/* ========================================= */
/* CSS para a página "Acompanhamento Individualizado" */
/* ========================================= */

/* [MODIFICADO] HERO PADRONIZADO (SEGUINDO A REFERÊNCIA DE ARTE E CULTURA) */
.hero--full-image {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    min-height: 90vh;
    padding: 40px 20px;
    background-color: var(--color-text-dark);
    margin-bottom: 0;
    z-index: 10;
    overflow: hidden;
}

.hero--full-image .hero__image-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url('../images/hero-acompanhamento.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    z-index: 1;
}

.hero--full-image .hero__overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

/* Conteúdo de texto do hero alinhado à esquerda */
.hero--full-image .hero__content {
    position: relative;
    z-index: 3;
    text-align: left;
    margin-left: 15%;
    margin-right: auto;
    max-width: 700px;
    padding-top: 0;
}

/* Título principal H1 */
.hero--full-image .hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: none;
}

/* Pré-título (primeiro parágrafo) */
.hero--full-image .hero__content > .hero__subtitle:first-of-type {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem); 
    font-weight: 600;
    line-height: 1.2;
    text-shadow: none;
    max-width: none;
    margin: 0;
}

/* Parágrafo de descrição (segundo parágrafo) */
.hero--full-image .hero__content > .hero__subtitle:last-of-type {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: none;
    max-width: none;
    margin: 0;
}


/* 2. Seção de Texto com Imagem */
.text-image-section {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Adicionado para garantir o espaçamento correto */
}

.text-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.text-image__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.text-image__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.text-image__image:hover img {
    transform: scale(1.05);
}
.text-image__content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}
.text-image__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 30px;
}
.text-image-grid--reversed .text-image__image {
    order: 2;
}

.text-image-section--decorated {
    background-color: var(--color-bg-alt);
}
.text-image-section--decorated::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--color-primary);
    opacity: 0.05;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
}

/* 3. Seção de Benefícios (Cards) */
.benefits-section {
    padding: 100px 0;
    background-color: var(--color-white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.benefit-card {
    background-color: var(--color-bg-alt);
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}
.benefit-card__icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-card__icon {
    transform: scale(1.15);
}
.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}


.text-image-section .btn.btn--secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.text-image-section .btn.btn--secondary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}


@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@media (max-width: 992px) {
    /* Responsividade do Hero */
    .hero--full-image .hero__content {
        margin-left: 10%;
    }

    .text-image-section, .benefits-section {
        padding: 80px 0;
    }
    .text-image-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .text-image-grid--reversed .text-image__image {
        order: 0;
    }
}

@media (max-width: 768px) {
    /* Responsividade do Hero */
    .hero--full-image {
        min-height: 80vh;
    }
    .hero--full-image .hero__content {
        max-width: 90%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .text-image-section, .benefits-section {
        padding: 60px 0;
    }
    .text-image__content {
        text-align: center;
    }
    .text-image__content .btn {
        margin: 0 auto;
    }
}