/* --------------------
   SERVICES PAGE STYLES
   -------------------- */
#page-header {
    background-image: url('../img/service.jpg'); /* Adicione sua imagem aqui */
    min-height: 40vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 90px; /* Adjust based on your header height */
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay escuro */
}

#page-header .container {
    position: relative;
    z-index: 2;
}

#page-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* --------------------
   SERVICES PAGE STYLES
   -------------------- */
#our-services .service-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#our-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#our-services .service-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

#our-services .service-card i {
    color: var(--color-blue-dark);
}

/* Our Process Section */
#our-process {
    background-color: #f8f9fa;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.process-step .process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-blue-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0;
}

/* Resources Section */
.resource-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.resource-box h4 {
    color: var(--color-blue-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--color-blue-dark);
    border: 2px solid var(--color-blue-dark);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: var(--color-blue-dark);
    color: #fff;
}