@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Variáveis de Cores (Identidade Visual) */
    --color-bg-light: #FAF6F0;
    /* Areia Claro - Fundo geral */
    --color-bg-sand: #F2E7DC;
    /* Areia Base - Transições e seções */
    --color-bg-dark-sand: #E6D8C8;
    /* Areia Escuro - Divisórias / Cards neutros */
    --color-primary-blue: #3A5D8C;
    /* Azul Profundo - Títulos e seções pesadas */
    --color-accent-red: #BF4D34;
    /* Terracota - CTA Principal / Destaques */
    --color-accent-yellow: #F29D35;
    /* Mostarda - Elementos lúdicos / Detalhes */
    --color-secondary-green: #71733F;
    /* Verde Oliva - Ícones e cards de equilíbrio */

    /* Escala Tipográfica Padronizada */
    --font-size-h1: 2.8rem;
    /* Dobra principal (Hero) - ligeiramente aumentado para destaque */
    --font-size-h2: 2.2rem;
    /* Títulos de Seção */
    --font-size-h3: 1.5rem;
    /* Títulos de Cards / Bônus */
    --font-size-body: 1.1rem;
    /* Parágrafos e Listas */
    --font-size-tag: 0.9rem;
    /* Tags / Kickers em caixa alta */

    /* Espaçamentos e Bordas */
    --spacing-section: 6rem 2rem;
    --border-radius-large: 40px;
    --border-radius-medium: 24px;
    --border-radius-small: 16px;

    /* Sombras Premium */
    --shadow-soft: 0 10px 30px rgba(58, 93, 140, 0.06);
    --shadow-medium: 0 15px 40px rgba(58, 93, 140, 0.1);
    --shadow-strong: 0 20px 50px rgba(58, 93, 140, 0.15);
}

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-light);
    font-family: 'Hanken Grotesk', sans-serif;
    color: #4A4A4A;
    overflow-x: hidden;
    line-height: 1.6;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Modificadores de Fundo para as Seções */
.bg-light {
    background-color: var(--color-bg-light);
}

.bg-sand {
    background-color: var(--color-bg-sand);
}

.bg-dark-sand {
    background-color: var(--color-bg-dark-sand);
}

.bg-blue {
    background-color: var(--color-primary-blue);
}

.bg-green {
    background-color: var(--color-secondary-green);
}

/* Classes de Títulos Reutilizáveis (Mapeados para Fonte Principal) */
.heading-primary {
    font-family: 'Fraunces', serif;
    font-size: var(--font-size-h1);
    color: var(--color-primary-blue);
    line-height: 1.2;
    font-weight: 800;
}

.heading-secondary {
    font-family: 'Fraunces', serif;
    font-size: var(--font-size-h2);
    color: var(--color-primary-blue);
    line-height: 1.3;
    font-weight: 700;
}

.heading-tertiary {
    font-family: 'Fraunces', serif;
    font-size: var(--font-size-h3);
    color: var(--color-primary-blue);
    font-weight: 700;
}

/* Inversão de cor automática para Seções Escuras (Ex: bg-blue / bg-green) */
.bg-blue .heading-secondary,
.bg-blue .heading-primary,
.bg-blue .heading-tertiary,
.bg-blue .text-body,
.bg-blue .text-body strong,
.bg-green .heading-secondary,
.bg-green .heading-primary,
.bg-green .heading-tertiary,
.bg-green .text-body,
.bg-green .text-body strong {
    color: var(--color-bg-light);
}

/* Classe Única para Todos os Parágrafos do Site (Fonte Secundária) */
.text-body {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: var(--font-size-body);
    color: #4A4A4A;
    line-height: 1.6;
}

.text-body strong {
    color: var(--color-primary-blue);
}

/* Classe Única para as Tags/Kickers em Caixa Alta */
.section-tag {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: var(--font-size-tag);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--color-accent-red);
    display: block;
    margin-bottom: 0.75rem;
}

.bg-blue .section-tag,
.bg-green .section-tag {
    color: var(--color-accent-yellow);
}

/* Espaçamento padrão de seções */
.section-padding {
    padding: var(--spacing-section);
    position: relative;
}

/* Estilo para Botões Base */
.btn {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.8rem;
    border-radius: var(--border-radius-large);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    gap: 0.5rem;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-primary {
    background-color: var(--color-accent-red);
    color: var(--color-bg-light);
}

.btn-primary:hover {
    background-color: #a83f28;
}

.btn-secondary {
    background-color: var(--color-accent-yellow);
    color: var(--color-bg-light);
}

.btn-secondary:hover {
    background-color: #e08e28;
}

/* Layout Geral & Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Preload */

.preload *,
.preload *::before,
.preload *::after {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/* Header & Menu de Navegação */
.main-header {
    background-color: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .75rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-brand {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/*
.mobile-nav-menu {
    display: none;
}
*/

.nav-link {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    color: var(--color-primary-blue);
    text-decoration: none;
    font-size: .88rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-accent-red);
}

.btn-nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius-large);
    color: var(--color-bg-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-primary-blue);
}

/* Animações de Scroll (IntersectionObserver) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-slide-left {
    transform: translateX(-40px);
}

.reveal-slide-right {
    transform: translateX(40px);
}

.reveal-slide-left.revealed,
.reveal-slide-right.revealed {
    transform: translateX(0);
}

/* Efeito de Flutuação nos Doodles */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-opposite {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(12px) rotate(-4deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating-doodle {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-doodle-2 {
    animation: float-opposite 7s ease-in-out infinite;
}

/* Elementos de Decoração / Nuvens e Ondas */
.divider-svg {
    position: absolute;
    width: 100%;
    left: 0;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.divider-top {
    top: 0;
    transform: translateY(-99%);
}

.divider-bottom {
    bottom: 0;
    transform: translateY(99%);
}

.divider-svg svg {
    display: block;
    width: 100%;
    height: 60px;
    /* Altura da curva */
}

.section-hero {
    padding-top: 10rem;
    padding-bottom: 7rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    font-size: var(--font-size-tag);
    background-color: var(--color-bg-sand);
    color: var(--color-accent-red);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

.hero-description {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    color: #5A5A5A;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

/* SEÇÃO 2: ÁREA DA VÍDEO COMPLEMENTAR */
.section-video {
    background-color: var(--color-bg-sand);
    padding-top: 6rem;
    padding-bottom: 6rem;
    z-index: 5;
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.features-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    text-transform: uppercase;
}

.feature-badge-item svg {
    width: 24px;
    height: 24px;
}

/* Mockup de Player de Vídeo */
.video-wrapper {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 6px solid white;
    aspect-ratio: 16/9;
    background-color: #1e1e1e;
    cursor: pointer;
}

.video-poster {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(58, 93, 140, 0.9) 0%, rgba(113, 115, 63, 0.8) 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    z-index: 3;
    transition: opacity 0.5s ease;
}

.play-button-outer {
    width: 90px;
    height: 90px;
    background-color: var(--color-accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(191, 77, 52, 0.3);
    animation: pulse-red 2s infinite;
    transition: transform 0.3s ease;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(191, 77, 52, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(191, 77, 52, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(191, 77, 52, 0);
    }
}

.video-wrapper:hover .play-button-outer {
    transform: scale(1.1);
}

.play-button-outer svg {
    width: 36px;
    height: 36px;
    fill: white;
    margin-left: 6px;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-wrapper.playing .video-poster {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.playing .video-iframe {
    display: block;
}

/* SEÇÃO 3: QUALIFICAÇÃO DE PÚBLICO */
.section-qualification {
    background-color: var(--color-bg-light);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.qualification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.qualification-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.qualification-card.is-for-you {
    border-color: rgba(113, 115, 63, 0.15);
}

.qualification-card.is-not-for-you {
    border-color: rgba(191, 77, 52, 0.15);
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.qualification-card-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qualification-card.is-for-you .qualification-card-title {
    color: var(--color-secondary-green);
}

.qualification-card.is-not-for-you .qualification-card-title {
    color: var(--color-accent-red);
}

.qualification-list {
    list-style: none;
}

.qualification-list li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
}

.qualification-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 900;
}

.qualification-card.is-for-you .qualification-list li::before {
    content: "✓";
    color: var(--color-secondary-green);
}

.qualification-card.is-not-for-you .qualification-list li::before {
    content: "✕";
    color: var(--color-accent-red);
}

.qualification-cta {
    text-align: center;
}

/* SEÇÃO 4: IDENTIFICAÇÃO E EMPATIA */
.section-empathy {
    background-color: var(--color-bg-sand);
}

.empathy-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.empathy-side-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--color-bg-dark-sand);
}

.empathy-cards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empathy-card-item {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border-left: 6px solid var(--color-accent-yellow);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.empathy-card-item:hover {
    transform: scale(1.01);
}

.empathy-item-number {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent-yellow);
}

.empathy-item-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #4A4A4A;
}

.cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-yellow .btn {
    margin-top: 1rem;
    background-color: var(--color-accent-yellow);
}

/* SEÇÃO 5: A VIRADA DE CHAVE */
.section-pivot {
    text-align: center;
    background-color: var(--color-primary-blue);
    color: white;
    overflow: hidden;
}

.pivot-box {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.pivot-title {
    margin-bottom: 2rem;
}

.pivot-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* SEÇÃO 6: PROVA SOCIAL */
.section-social {
    background-color: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

/* Estilo Mockup de Conversa do WhatsApp (Prints) */
.whatsapp-mockup {
    width: 100%;
    height: auto;
    border: 3px solid var(--color-bg-dark-sand);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.whatsapp-mockup:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.whatsapp-header {
    background-color: #005e54;
    color: white;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d1d7db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #54656f;
    font-size: 1.1rem;
}

.whatsapp-user-info {
    flex: 1;
}

.whatsapp-user-name {
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Hanken Grotesk', sans-serif;
}

.whatsapp-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.whatsapp-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" opacity="0.04"><path d="M10 20h20v20H10zm40 0h20v20H50zM10 60h20v20H10zm40 0h20v20H50z" fill="%23000"/></svg>');
}

.whatsapp-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 0 15px 15px 15px;
    font-size: 0.95rem;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.whatsapp-bubble.received {
    background-color: white;
    align-self: flex-start;
    color: #111b21;
}

.whatsapp-bubble.sent {
    background-color: #d9fdd3;
    align-self: flex-end;
    border-radius: 15px 0 15px 15px;
    color: #111b21;
}

.bubble-time {
    font-size: 0.7rem;
    color: #667781;
    text-align: right;
    display: block;
    margin-top: 0.25rem;
}

/* Lightbox para expandir depoimento */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(56 59 62 / 95%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 500px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(0.7);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* SEÇÃO 7: OFERTA E PRECIFICAÇÃO */
.section-pricing {
    background-color: var(--color-bg-sand);
}

.pricing-container {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: white;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    border: 4px solid var(--color-bg-dark-sand);
}

.pricing-details {
    padding: 4rem 3.5rem;
}

.pricing-details-title {
    margin-bottom: 2rem;
}

.pricing-features-list,
.pricing-bonus-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features-list li,
.pricing-bonus-list li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-features-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--color-primary-blue);
    font-weight: bold;
}

.pricing-bonus-title {
    font-weight: 800;
    color: var(--color-primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-bonus-list li {
    padding-left: 0;
}

.pricing-bonus-list:first-child li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.pricing-card {
    background-color: var(--color-primary-blue);
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background-color: var(--color-accent-yellow);
}

.pricing-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--color-accent-yellow);
    color: var(--color-primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    display: block;
}

.price-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    display: block;
}

.price-main {
    font-family: 'Fraunces', serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent-yellow);
    margin-bottom: 0.5rem;
}

.price-sub {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    display: block;
}

.pricing-cta-btn {
    width: 100%;
    margin-bottom: 1.25rem;
}

.pricing-security-note {
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: center;
    display: block;
}

/* SEÇÃO 8: AUTORIDADE */
.section-authority {
    background-color: var(--color-bg-light);
}

.authority-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.authority-image-box {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 6px solid white;
    display: flex;
}

.authority-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

.authority-quote {
    border-left: 6px solid var(--color-accent-red);
    padding: 1rem 0 1rem 1.8rem;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-primary-blue);
    margin: 2.5rem 0;
    line-height: 1.5;
}

.authority-bio p {
    margin-bottom: 1.5rem;
}

/* SEÇÃO 9: QUEBRA DE RISCO */
.section-guarantee {
    background-color: var(--color-secondary-green);
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color-bg-light);
}

.guarantee-badge svg,
.guarantee-svg-icon {
    width: 90px;
    height: 90px;
    fill: currentColor;
    opacity: 0.95;
}

/* SEÇÃO 10: FAQ (DÚVIDAS FREQUENTES) */
.section-faq {
    background-color: var(--color-bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-bg-dark-sand);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 2rem;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.faq-chevron {
    width: 36px;
    height: 36px;
    fill: var(--color-accent-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 2.2rem;
}

.faq-answer-inner {
    padding-bottom: 1.8rem;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.6;
}

/* Estados ativos do FAQ controlados por JS */
.faq-item.active {
    border-color: var(--color-primary-blue);
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Grande o suficiente para conter o texto */
    transition: max-height 0.4s ease;
}

/* SEÇÃO 11: RODAPÉ */
.main-footer {
    background-color: var(--color-primary-blue);
    color: white;
    padding: 5rem 2rem 1rem;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand-title {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-accent-yellow);
}

.footer-brand-text {
    opacity: 0.9;
    max-width: 380px;
    font-size: 1.05rem;
}

.footer-links-title,
.footer-contact-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-bg-light);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    color: white;
    text-decoration: none;
    font-family: 'Hanken Grotesk', sans-serif;
    transition: color 0.2s ease;
    opacity: 0.85;
}

.footer-links-list a:hover {
    color: var(--color-accent-yellow);
    opacity: 1;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Hanken Grotesk', sans-serif;
    opacity: 0.9;
}

.footer-contact-list a {
    color: white;
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: var(--color-accent-yellow);
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-accent-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 246, 240, 0.15);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--color-accent-yellow);
}

/* RESPONSIVIDADE (MOBILE & TABLET) */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 1.8rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(58, 93, 140, 0.4);
        backdrop-filter: blur(4px);
        z-index: 1001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s ease;
    }

    .nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        display: none;
    }

    .mobile-nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background-color: var(--color-bg-light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2.5rem 3rem 2.5rem;
        gap: 2rem;
        z-index: 1002;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.42, -0.01, .66, .99), visibility 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        opacity: 1;
        pointer-events: auto;
        visibility: hidden;
        overflow: hidden;
    }

    .mobile-nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav-link {
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 600;
        color: var(--color-primary-blue);
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.2s ease;
        text-align: left;
        width: 100%;
    }

    .mobile-nav-link:hover {
        color: var(--color-accent-red);
    }

    .mobile-nav-menu .btn-nav-cta {
        width: auto;
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
        color: var(--color-bg-light);
    }

    .menu-toggle {
        display: block;
        position: fixed;
        top: 1.1rem;
        right: 2rem;
        z-index: 1003;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 60%;
    }

    .hero-bg-img {
        object-fit: contain;
        object-position: center 50px;
    }

    .hero-bg-picture {
        width: initial;
        height: initial;
    }

    .hero-cta-wrapper {
        align-items: center;
    }

    .empathy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .authority-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .authority-image-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-details {
        padding: 3rem 2rem;
    }

    .pricing-card {
        padding: 3rem 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-h1: 2.2rem;
        --font-size-h2: 1.6rem;
        --spacing-section: 4rem 1.25rem;
    }

    .hero-content {
        margin-top: 50%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links a {
        margin: 0 0.75rem;
    }

    .features-badges {
        gap: 1rem;
    }

    .feature-badge-item {
        width: 100%;
        justify-content: center;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-brand span {
        display: none;
    }
}