/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    /* Branco puro para integração perfeita com o fade */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho com fade suave */
.header {
    background: linear-gradient(135deg, #da8926 0%, #dba768 100%);
    color: white;
    padding: 40px 0 100px 0;
    text-align: center;
    position: relative;
}

/* Gradiente de fade para a cor quente (#FFF8F0) */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom,
            rgba(255, 248, 240, 0) 0%,
            rgba(255, 248, 240, 0.1) 20%,
            rgba(255, 248, 240, 0.3) 40%,
            rgba(255, 248, 240, 0.6) 60%,
            rgba(255, 248, 240, 0.9) 80%,
            #FFF8F0 100%);
    pointer-events: none;
}

.header-title {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Título e Subtítulo do Header */
.site-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.site-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: none;
    margin-top: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Responsividade título */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }

    .site-subtitle {
        font-size: 1.2rem;
    }
}

/* ========================================
   SEÇÃO HERO - DESIGN PREMIUM
   ======================================== */
.hero {
    background: linear-gradient(180deg, #FFF8F0 0%, #FFF8F0 30%, #FDF5E6 70%, #ffffff 100%);
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efeitos decorativos de fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 169, 102, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}




/* Aplicando o seu gradiente na parte final */
.parte-gradiente {
    /* 1. Definir o seu gradiente de fundo */
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);

    /* 2. Aplicar o gradiente apenas ao texto (Truque essencial) */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Tornar o texto transparente para o fundo aparecer */
    color: transparent;

    /* Garantir que o peso da fonte seja o mesmo do restante */
    font-weight: 700;
}


.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #3E270E;
}

.hero-description {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #895A21;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

/* Container de vídeo com efeitos premium */
.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(137, 90, 33, 0.2);
    position: relative;
    z-index: 10;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(137, 90, 33, 0.3);
}

.video-container iframe,
.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.btn-play {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
    background-color: #CCA966;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: #B08D4C;
    transform: scale(1.05);
}

/* ========================================
   LISTA DE BENEFÍCIOS PREMIUM
   ======================================== */

.benefits-list-premium {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(204, 169, 102, 0.2);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(137, 90, 33, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Gradiente sutil no fundo */
.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(137, 90, 33, 0.02) 0%,
            rgba(204, 169, 102, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(137, 90, 33, 0.15);
    border-color: rgba(204, 169, 102, 0.4);
}

/* Ícone do benefício */
.benefit-item .benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(-8deg);
    filter: drop-shadow(0 6px 12px rgba(137, 90, 33, 0.25));
}

/* Texto do benefício */
.benefit-text {
    font-size: 1.15rem;
    font-weight: 600;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Item destacado para urgência (Vagas Limitadas) */
.benefit-item.highlight {
    background: linear-gradient(135deg,
            rgba(255, 107, 107, 0.12) 0%,
            rgba(255, 142, 83, 0.12) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: pulse-item 2s ease-in-out infinite;
}

.benefit-item.highlight::before {
    background: linear-gradient(135deg,
            rgba(255, 107, 107, 0.08) 0%,
            rgba(255, 142, 83, 0.08) 100%);
    opacity: 1;
}

.benefit-item.highlight .benefit-text {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefit-item.highlight .benefit-icon {
    animation: shake-icon 0.5s ease-in-out infinite;
}

@keyframes pulse-item {

    0%,
    100% {
        box-shadow:
            0 8px 20px rgba(255, 107, 107, 0.15),
            0 2px 8px rgba(255, 107, 107, 0.1);
    }

    50% {
        box-shadow:
            0 12px 30px rgba(255, 107, 107, 0.25),
            0 4px 12px rgba(255, 107, 107, 0.2),
            0 0 20px rgba(255, 107, 107, 0.15);
    }
}

@keyframes shake-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-12deg) scale(1.08);
    }

    75% {
        transform: rotate(12deg) scale(1.08);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-list-premium {
        padding: 0 15px;
        gap: 15px;
    }

    .benefit-item {
        padding: 20px 20px;
        gap: 15px;
    }

    .benefit-item .benefit-icon {
        font-size: 2rem;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .benefit-item.highlight .benefit-text {
        font-size: 1.05rem;
    }

    .benefit-item:hover {
        transform: translateX(5px);
    }
}


/* ========================================
   CTA WRAPPER & BADGES DE PROMOÇÃO
   ======================================== */

/* Wrapper flexível para CTA + Badge */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px auto;
    position: relative;
    width: fit-content;
}

/* Badge de Promoção - Design Premium */
.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(255, 107, 107, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
    animation: float-badge 3s ease-in-out infinite;
}

/* Efeito de brilho no badge */
.promo-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0px);
    }

    50% {
        transform: rotate(-2deg) translateY(-5px);
    }
}

/* Ícone do badge */
.badge-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: rotate-icon 2s ease-in-out infinite;
}

@keyframes rotate-icon {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Texto do badge */
.badge-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Variação com pulso para badges mais urgentes */
.promo-badge.pulse {
    animation: float-badge 3s ease-in-out infinite, pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow:
            0 4px 15px rgba(255, 107, 107, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow:
            0 6px 25px rgba(255, 107, 107, 0.6),
            0 4px 12px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(255, 107, 107, 0.3);
    }
}

/* Botão CTA */
.cta-button {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #C09A59 0%, #D7B073 100%);
    color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 181, 1, 0.4);
    text-align: center;
    text-decoration: none;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 181, 1, 0.6);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 22px 20px;
}

/* Responsividade dos badges */
@media (max-width: 768px) {
    .promo-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        gap: 6px;
    }

    .badge-icon {
        font-size: 1.1rem;
    }

    .cta-wrapper {
        gap: 12px;
    }
}

/* Botão de Contato WhatsApp */
.contato-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-align: center;
    text-decoration: none;
    width: fit-content;
}

.contato-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.contato-button.large {
    font-size: 1.4rem;
    padding: 20px 45px;
}

/* Seção Final CTA */
.final-cta {
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta .section-title {
    color: white;
    margin-bottom: 30px;
}

.whatsapp-text {
    margin-top: 30px;
    font-size: 1.1rem;
}

.whatsapp-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    transition: opacity 0.3s ease;
}

.whatsapp-link:hover {
    opacity: 0.8;
}

/* Rodapé */
.footer {
    background-color: #3E270E;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 35px;
    }


}

/* Header com subtitle */
.header-subtitle {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.95;
}

/* Hero Section */
.main-headline {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #3E270E;
    line-height: 1.3;
    font-weight: 700;
}

/* Storytelling Section */
.storytelling {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    padding: 80px 0;
    position: relative;
}

.story-content {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    /* Fundo translúcido para ver a imagem atrás */
    backdrop-filter: blur(10px);
    /* Efeito de vidro fosco */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    /* Garante que o texto fique sobre a imagem de fundo */
}

/* Elemento decorativo no topo do card */
.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #895A21, #CCA966);
    border-radius: 0 0 10px 10px;
}

.storytelling .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #3E270E;
    margin-bottom: 40px;
    line-height: 1.3;
    text-align: center;
}

.storytelling .section-title img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #5D4037;
    margin-bottom: 25px;
    text-align: justify;
}

.story-subtext {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.9;
    color: #5D4037;
    margin-bottom: 25px;
    text-align: center;
}

.story-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3E270E;
    text-align: center;
    margin: 40px -20px;
    /* Quebra levemente as margens laterais */
    padding: 40px;
    background: linear-gradient(135deg, rgba(137, 90, 33, 0.05) 0%, rgba(204, 169, 102, 0.05) 100%);
    border-radius: 15px;
    border-left: 5px solid #895A21;
    border-right: 5px solid #CCA966;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.story-highlight:hover {
    transform: scale(1.02);
}

/* Aspas decorativas */
.story-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(137, 90, 33, 0.1);
    font-family: serif;
    line-height: 1;
}

.story-finale {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3E270E;
    text-align: center;
    margin-top: 30px;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #FAF9F6 0%, #F5E9D6 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.problem-list {
    max-width: 750px;
    margin: 40px auto 0;
    text-align: center;
}

.problem-intro {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 20px;
}

.problem-text {
    font-size: 1.1rem;
    color: #555;
    margin: 20px 0;
}

.problem-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin: 30px 0;
    padding: 25px;
    background: white;
    border-radius: 10px;
    line-height: 1.5;
}

.problem-points {
    display: grid;
    gap: 12px;
    margin: 30px 0;
    max-width: 400px;
    /* Alinha à esquerda mantendo margem automática só na direita */
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.problem-item {
    background: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 500;
    max-width: 100%;
}

.problem-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3E270E;
    margin-top: 20px;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background-color: white;
    padding: 60px 0;
    position: relative;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto 30px;
    color: #555;
}

.solution-promise {
    text-align: center;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 50px auto 30px;
    color: #3E270E;
    line-height: 1.6;
    padding: 0 20px;
}

.solution-promise strong {
    color: #895A21;
}

.solution-finale {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #CCA966;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

/* ========================================
   CONTENT SECTION - DESIGN PREMIUM
   ======================================== */
.content-section {
    background: linear-gradient(180deg, #ffffff 0%, #FAF9F6 50%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(204, 169, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(137, 90, 33, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(137, 90, 33, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(137, 90, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(137, 90, 33, 0.4);
}

.content-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.content-card:hover .content-icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 8px 25px rgba(137, 90, 33, 0.3));
}

.content-card h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.content-card:hover h3 {
    transform: scale(1.05);
}

.content-card p {
    color: #5D4037;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   BENEFITS SECTION - DESIGN PREMIUM
   ======================================== */
.benefits-section {
    background: linear-gradient(135deg, #FAF9F6 0%, #ffffff 50%, #FFF8F0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefits-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.benefits-subtitle {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.benefits-list-full {
    list-style: none;
    padding: 0;
}

.benefits-list-full li {
    margin: 20px 0;
    padding-left: 45px;
    position: relative;
    font-size: 1.1rem;
    color: #5D4037;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.benefits-list-full li:hover {
    transform: translateX(10px);
    color: #3E270E;
}

.benefits-list-full li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(137, 90, 33, 0.3);
    transition: all 0.3s ease;
}

.benefits-list-full li:hover::before {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(137, 90, 33, 0.5);
}

/* ========================================
   TIMELINE SECTION - PREMIUM DESIGN
   ======================================== */
.timeline-section {
    background: linear-gradient(180deg, #ffffff 0%, #FFF8F0 30%, #FAF9F6 70%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 169, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-slow 30s ease-in-out infinite;
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-slow 35s ease-in-out infinite reverse;
}

.timeline-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
}

.timeline-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #5D4037;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Linha central da timeline */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            #CCA966 10%,
            #895A21 50%,
            #CCA966 90%,
            transparent 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(137, 90, 33, 0.3);
}

/* Item da timeline */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

/* Animação de entrada */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Atraso em cascata para cada item */
.timeline-item[data-order="1"] {
    animation-delay: 0.1s;
}

.timeline-item[data-order="2"] {
    animation-delay: 0.2s;
}

.timeline-item[data-order="3"] {
    animation-delay: 0.3s;
}

.timeline-item[data-order="4"] {
    animation-delay: 0.4s;
}

.timeline-item[data-order="5"] {
    animation-delay: 0.5s;
}

.timeline-item[data-order="6"] {
    animation-delay: 0.6s;
}

.timeline-item[data-order="7"] {
    animation-delay: 0.7s;
}

.timeline-item[data-order="8"] {
    animation-delay: 0.8s;
}

/* Alternância esquerda/direita */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

/* Marcador central */
.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C09A59 0%, #D7B073 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(255, 248, 240, 0.8),
        0 0 0 12px rgba(204, 169, 102, 0.3),
        0 8px 25px rgba(137, 90, 33, 0.4);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 8px rgba(255, 248, 240, 0.8),
            0 0 0 12px rgba(204, 169, 102, 0.3),
            0 8px 25px rgba(137, 90, 33, 0.4);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(255, 248, 240, 0.8),
            0 0 0 20px rgba(204, 169, 102, 0.2),
            0 12px 35px rgba(137, 90, 33, 0.5);
    }
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.15) rotate(360deg);
    box-shadow:
        0 0 0 10px rgba(255, 248, 240, 0.9),
        0 0 0 18px rgba(204, 169, 102, 0.4),
        0 12px 35px rgba(137, 90, 33, 0.6);
}

.timeline-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Conteúdo da timeline */
.timeline-content {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(137, 90, 33, 0.15);
    border: 2px solid rgba(204, 169, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho ao hover */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(204, 169, 102, 0.2),
            transparent);
    transition: left 0.6s ease;
}

.timeline-item:hover .timeline-content::before {
    left: 100%;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(137, 90, 33, 0.25);
    border-color: rgba(204, 169, 102, 0.5);
}

/* Seta apontando para o marcador */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.1));
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}

.timeline-content h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
    transform: scale(1.05);
}

.timeline-content p {
    font-size: 1.05rem;
    color: #5D4037;
    line-height: 1.7;
    margin: 0;
}

/* Responsividade da timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 60px;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
    }

    .timeline-number {
        font-size: 1.3rem;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -20px;
        right: auto;
        border-width: 15px 20px 15px 0;
        border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
    }

    .timeline-section .section-title {
        font-size: 2rem;
    }

    .timeline-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
}

/* ========================================
   BEFORE/AFTER SECTION - DESIGN PREMIUM
   ======================================== */
.before-after {

    background: linear-gradient(135deg, #895A21 0%, #6bb6d6 50%, #CCA966 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.before-after .section-title {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.comparison-column:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

.comparison-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.comparison-column h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid;
    font-weight: 800;
    letter-spacing: 1px;
}

.comparison-column.before h3 {
    color: #e74c3c;
    border-color: #e74c3c;
}

.comparison-column.after h3 {
    color: #27ae60;
    border-color: #27ae60;
}

.comparison-item {
    padding: 15px 20px;
    margin: 15px 0;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.comparison-item:hover {
    transform: translateX(10px);
}

.before .comparison-item {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #e74c3c;
}

.before .comparison-item:hover {
    background-color: #ffcdd2;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.after .comparison-item {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #27ae60;
}

.after .comparison-item:hover {
    background-color: #c8e6c9;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}



.about-mission,
.about-finale {
    text-align: center;
    font-size: 1.1rem;
    max-width: 750px;
    margin: 25px auto;
    color: #555;
}

.mission-statement {
    text-align: center;
    font-size: 1.3rem;
    color: #895A21;
    margin-top: 35px;
    font-weight: 600;
    line-height: 1.6;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .main-headline {
        font-size: 1.6rem;
    }

    .story-highlight,
    .problem-highlight {
        font-size: 1.1rem;
        padding: 15px;
    }

    .comparison-grid,
    .benefits-columns {
        grid-template-columns: 1fr;
    }
}

.conteudo-section {
    background: linear-gradient(180deg, #ffffff 0%, #FFF8F0 50%, #FDF5E6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo decorativo */
.conteudo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.conteudo-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 169, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.conteudo-section .section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(137, 90, 33, 0.1);
}

/* Grid de cards */
.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Cards com glassmorphism */
.conteudo-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 45px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(137, 90, 33, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no hover */
.conteudo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(137, 90, 33, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.conteudo-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.conteudo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(137, 90, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(137, 90, 33, 0.3);
}

/* Ícones grandes e impactantes */
.conteudo-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.conteudo-card:hover .conteudo-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(137, 90, 33, 0.3));
}

/* Títulos dos cards */
.conteudo-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.conteudo-card:hover h3 {
    transform: translateX(5px);
}

/* Parágrafos */
.conteudo-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5D4037;
    margin-bottom: 18px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.conteudo-card p:last-child {
    margin-bottom: 0;
}

/* Efeito de destaque no primeiro parágrafo */
.conteudo-card p:first-of-type::first-letter {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 5px;
}

/* Botão CTA dentro da seção */
.conteudo-section .cta-button {
    margin-top: 60px;
    font-size: 1.4rem;
    padding: 20px 60px;
    box-shadow:
        0 10px 30px rgba(251, 181, 1, 0.4),
        0 0 0 0 rgba(251, 181, 1, 0.5);
    animation: pulse-shadow 2s ease-in-out infinite;
}

@keyframes pulse-shadow {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(251, 181, 1, 0.4),
            0 0 0 0 rgba(251, 181, 1, 0.5);
    }

    50% {
        box-shadow:
            0 10px 30px rgba(251, 181, 1, 0.4),
            0 0 0 15px rgba(251, 181, 1, 0);
    }
}

.conteudo-section .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(251, 181, 1, 0.6),
        0 0 30px rgba(251, 181, 1, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .conteudo-section {
        padding: 60px 0;
    }

    .conteudo-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .conteudo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .conteudo-card {
        padding: 35px 25px;
    }

    .conteudo-icon {
        font-size: 4rem;
    }

    .conteudo-card h3 {
        font-size: 1.5rem;
    }

    .conteudo-card p {
        font-size: 1rem;
    }

    .conteudo-section .cta-button {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}

/* ========================================
   OFFER SECTION - DESIGN PREMIUM
   ======================================== */
.offer-section {
    background: linear-gradient(135deg, #C09A59 0%, #D7B073 50%, #C09A59 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-slow 30s ease-in-out infinite;
}

.offer-section .section-title {
    color: #3E270E;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.offer-subtitle {
    font-size: 1.8rem;
    color: #3E270E;
    margin-bottom: 25px;
    font-weight: 700;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.offer-list li {
    font-size: 1.2rem;
    color: #5D4037;
    margin: 18px 0;
    padding-left: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.offer-list li:hover {
    transform: translateX(10px);
    color: #3E270E;
}

.offer-list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.guarantee-box {
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(137, 90, 33, 0.3);
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(137, 90, 33, 0.4);
}

.guarantee-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.guarantee-box p {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ========================================
   SOLUTION SECTION - MELHORIAS
   ======================================== */


.promise-box {
    background: rgba(137, 90, 33, 0.05);
    padding: 40px;
    border-radius: 20px;
    margin: 50px 0;
    border-left: 5px solid #895A21;
    border-right: 5px solid #CCA966;
}

/* ========================================
   ABOUT DOCTORS - MELHORIAS
   ======================================== */
/* ========================================
   SEÇÃO DOCTORS - DESIGN PREMIUM REVISADO
   ======================================== */
.about-doctors {
    background: linear-gradient(135deg, #FAF9F6 0%, #ffffff 50%, #FFF8F0 100%);
    padding: 0 0 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza verticalmente o fluxo principal */
}

.about-doctors::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(137, 90, 33, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Banner Hero com Imagem de Fundo Estilo Story (Vertical sempre) */
/* Banner Hero com Imagem de Fundo Estilo Story (Vertical sempre) */
.about-hero-banner {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 60px auto;
    aspect-ratio: 9 / 16;
    background-image: url('img/foto_Angelica.jpeg');
    background-size: cover;
    background-position: center 20%;
    /* Foco no rosto */
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-hero-banner:hover {
    transform: translateY(-5px);
    /* Leve flutuação ao passar o mouse */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100;
    height: 100%;
    /* Gradiente ajustado para não cobrir o rosto no topo */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            /* Topo mais suave */
            rgba(0, 0, 0, 0) 20%,
            /* Meio limpo para o rosto */
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.8) 85%,
            /* Base escura para texto */
            rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    align-items: stretch;
}

/* Flexbox para separar topo e base */
.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    color: white;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 2rem;
    /* Tamanho equilibrado */
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 0;
}

.highlight-doctor-name {
    font-size: 2rem;
    color: #CCA966;
    /* Gold color to stand out */
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Strong shadow for readability */
    letter-spacing: 2px;
    line-height: 1.1;
}

.doctor-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    border: none;
}

/* CARDS CONTAINER */
.doctor-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(137, 90, 33, 0.2);
    transition: all 0.4s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(137, 90, 33, 0.4);
}

.doctor-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 15px rgba(137, 90, 33, 0.2));
}

.doctor-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    font-weight: 700;
}

.doctor-card p {
    color: #5D4037;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Header do Card */
.doctor-profile-header {
    background: linear-gradient(to bottom, #FFF8F0, #fff);
    padding: 40px 30px 20px;
    border-bottom: 1px solid rgba(137, 90, 33, 0.05);
}

.doctor-profile-header h3 {
    font-size: 1.6rem;
    color: #3E270E;
    margin-bottom: 8px;
    font-weight: 800;
}

.doctor-specialty {
    color: #895A21;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.rqe-badge {
    display: inline-block;
    background: white;
    color: #666;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Lista de Currículo - CENTRALIZADA */
.doctor-curriculum-list {
    list-style: none;
    padding: 30px;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.doctor-curriculum-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 1.05rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-curriculum-list li:last-child {
    border-bottom: none;
}

.doctor-curriculum-list li::before {
    content: '★';
    color: #C09A59;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

/* Social */
.doctor-social {
    padding: 20px 30px 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: #fff;
}

.doctor-social span {
    background: #FDF5E6;
    color: #895A21;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: default;
}

.doctor-social span:hover {
    background: #895A21;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 90, 33, 0.3);
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #895A21;
}

.mission-statement strong {
    color: #895A21;
    display: block;
    margin-top: 15px;
    font-size: 1.4rem;
}





/* ========================================
   MEDIA QUERIES - RESPONSIVIDADE
   ======================================== */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .header img {
        width: clamp(220px, 45vw, 450px);
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Tablets pequenos */
@media (max-width: 768px) {
    .header {
        padding: 30px 0 80px 0;
    }

    .header img {
        width: clamp(200px, 60vw, 400px);
    }

    /* Ajustar apenas largura para tablets, layout já é vertical */
    .about-hero-banner {
        width: 60%;
        /* Um pouco mais largo que no desktop, mas não tela cheia */
        max-width: 400px;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 1.05rem;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .header {
        padding: 25px 0 70px 0;
    }

    .header img {
        width: clamp(180px, 70vw, 300px);
    }

    /* Mobile: Ocupar quase toda a largura */
    /* Mobile: Ocupar quase toda a largura */
    .about-hero-banner {
        width: 95%;
        max-width: none;
        margin: 20px auto;
        border-radius: 15px;
    }

    .about-hero-content {
        padding: 25px 15px;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Smartphones pequenos */
@media (max-width: 360px) {
    .header {
        padding: 20px 0 60px 0;
    }

    .header img {
        width: clamp(150px, 80vw, 250px);
    }

    /* Banner ainda mais vertical para telas muito pequenas */
    /* Banner ainda mais vertical para telas muito pequenas */
    .about-hero-banner {
        aspect-ratio: 3 / 4;
    }

    .about-hero-title {
        font-size: 1.4rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ========================================
   SEÇÃO DE LOCALIZAÇÃO DO EVENTO
   ======================================== */

.event-location-section {
    margin-top: 50px;
    background: linear-gradient(135deg,
            rgba(137, 90, 33, 0.03) 0%,
            rgba(204, 169, 102, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(137, 90, 33, 0.1);
}

/* Grid de informações do evento */
.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

/* Card individual de informação */
.event-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(204, 169, 102, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(137, 90, 33, 0.15);
    border-color: rgba(204, 169, 102, 0.4);
}

/* Ícone do evento */
.event-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.event-detail:hover .event-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Texto do evento */
.event-detail-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #895A21;
    opacity: 0.8;
}

.event-value {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #895A21 0%, #CCA966 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Container do mapa responsivo */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(137, 90, 33, 0.15);
    border: 2px solid rgba(204, 169, 102, 0.3);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Responsividade da seção de evento */
@media (max-width: 768px) {
    .event-location-section {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .event-info {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    .event-detail {
        padding: 15px;
        gap: 12px;
    }

    .event-icon {
        font-size: 2rem;
    }

    .event-label {
        font-size: 0.75rem;
    }

    .event-value {
        font-size: 1rem;
    }

    .map-container {
        padding-bottom: 75%;
        /* Mais quadrado em mobile */
    }
}