/* ============================================================================
   SIMONATO MKT — Folha de Estilo Principal
   Paleta: Navy #1B2A4A + Gold #C9A84C
   Fontes: Fraunces (display) + Inter (body)
   Filosofia: Refined executive luxury
   ============================================================================ */

/* ============================================================================
   0. TOKENS / VARIÁVEIS
   ============================================================================ */
:root {
    /* Cores da marca */
    --navy:           #1B2A4A;
    --navy-deep:      #121E37;
    --navy-soft:      #243657;
    --gold:           #C9A84C;
    --gold-light:     #E4C77A;
    --gold-dark:      #A68930;

    --white:          #FFFFFF;
    --cream:          #FAF8F3;
    --gray-50:        #F5F7FA;
    --gray-100:       #EDEFF4;
    --gray-200:       #D4D8E0;
    --gray-400:       #8B92A0;
    --gray-600:       #444444;
    --gray-800:       #1A1A1A;

    --green:          #1A6640;
    --red:            #8B0000;

    /* Tipografia */
    --font-display:   'Fraunces', 'Times New Roman', serif;
    --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espaçamento */
    --space-xs:       0.5rem;
    --space-sm:       1rem;
    --space-md:       1.5rem;
    --space-lg:       2.5rem;
    --space-xl:       4rem;
    --space-xxl:      6rem;

    /* Layout */
    --container:      1200px;
    --container-sm:   960px;
    --radius-sm:      6px;
    --radius:         10px;
    --radius-lg:      16px;

    /* Sombras */
    --shadow-sm:      0 2px 8px rgba(27, 42, 74, 0.06);
    --shadow:         0 4px 16px rgba(27, 42, 74, 0.08);
    --shadow-lg:      0 12px 40px rgba(27, 42, 74, 0.12);
    --shadow-gold:    0 8px 24px rgba(201, 168, 76, 0.25);

    /* Transições */
    --ease:           cubic-bezier(0.2, 0.8, 0.2, 1);
    --dur:            280ms;
}

/* ============================================================================
   1. RESET + BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--gray-600);
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    letter-spacing: -0.01em;
    font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }

p { margin: 0 0 var(--space-md); }

strong, b { color: var(--navy); font-weight: 600; }

em { font-style: italic; }

::selection { background: var(--gold); color: var(--navy); }

/* ============================================================================
   2. LAYOUT / UTILITÁRIOS
   ============================================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--space-md); }

.section {
    padding: var(--space-xxl) 0;
    position: relative;
}
@media (max-width: 768px) {
    .section { padding: var(--space-xl) 0; }
}

.section-dark {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-light { background: var(--gray-50); }

.section-cream { background: var(--cream); }

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-header p {
    font-size: 1.08rem;
    color: var(--gray-400);
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

/* Regra dourada decorativa */
.rule-gold {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border: 0;
    margin: var(--space-md) auto;
}

/* ============================================================================
   3. BOTÕES
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-200);
}
.btn-ghost:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-large { padding: 20px 40px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }
.btn-header { padding: 12px 22px; font-size: 0.9rem; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    padding: 4px 0;
    transition: border var(--dur) var(--ease);
}
.btn-link:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* ============================================================================
   4. HEADER / NAVEGAÇÃO
   ============================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--dur) var(--ease);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--gray-100);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 14px var(--space-md);
    max-width: var(--container);
    margin: 0 auto;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 48px; width: auto; display: block; }

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.nav-list > li > a {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--dur) var(--ease);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.is-active::after {
    width: 100%;
}
.nav-list > li > a.is-active { color: var(--gold-dark); }

.has-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.7rem; line-height: 1; }
.dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transition: all var(--dur) var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
}
.dropdown li a:hover {
    background: var(--gray-50);
    color: var(--gold-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

/* Compensa o header fixo no início das páginas */
body { padding-top: 76px; }

@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--dur) var(--ease);
        flex-direction: column;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { max-height: calc(100vh - 76px); overflow-y: auto; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md) 0;
        gap: 0;
        width: 100%;
    }
    .nav-list > li { width: 100%; }
    .nav-list > li > a {
        display: block;
        padding: 16px var(--space-md);
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }
    .nav-list > li > a::after { display: none; }
    .nav-list > li > a.is-active { background: var(--gray-50); color: var(--gold-dark); }
    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: 0;
        padding: 0;
        background: var(--gray-50);
    }
    .dropdown li a { padding: 14px 32px; font-size: 0.9rem; }
    .btn-header { display: none; }
    .menu-toggle { display: flex; }
}

/* ============================================================================
   5. HERO (Home)
   ============================================================================ */
.hero {
    min-height: 90vh;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: var(--space-xxl) 0 var(--space-xl);
}

/* Textura sutil de gradiente dourado no fundo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Grain sutil */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 960px) {
    .hero { min-height: auto; padding: var(--space-xl) 0; }
    .hero-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.2vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-ctas .btn-link { color: var(--gold-light); }
.hero-ctas .btn-link:hover { border-bottom-color: var(--gold-light); }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}
.hero-badges li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-photo::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 40%, transparent 60%, var(--gold-dark) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Placa decorativa atrás da foto */
.hero-photo-frame {
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.35;
}

/* ============================================================================
   6. SEÇÕES ESPECIAIS
   ============================================================================ */

/* BLOCO 2 — Os 4 erros (grid 2x2) */
.errors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
}
@media (max-width: 700px) {
    .errors-grid { grid-template-columns: 1fr; }
}

.error-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--dur) var(--ease);
    position: relative;
}
.error-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.error-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
    font-style: italic;
}
.error-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.error-card p {
    font-size: 0.97rem;
    margin: 0;
    color: var(--gray-600);
}

/* Quote / citação de destaque */
.quote-block {
    max-width: 820px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-lg);
    text-align: center;
    position: relative;
}
.quote-block::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.8;
    color: var(--gold);
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
}
.quote-block blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    line-height: 1.4;
    color: var(--navy);
    font-weight: 500;
}
.section-dark .quote-block blockquote { color: var(--white); }
.quote-cite {
    display: block;
    margin-top: var(--space-md);
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.92rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
}

/* BLOCO 3 — Dor principal (seção escura) */
.pain-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.pain-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.8vw, 2.7rem);
    color: var(--white);
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    line-height: 1.2;
}
.pain-title strong {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}
.pain-body {
    max-width: 680px;
    margin: 0 auto var(--space-xl);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.pain-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .pain-pillars { grid-template-columns: 1fr; }
}
.pillar-card {
    background: var(--white);
    color: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-top: 4px solid var(--gold);
    text-align: center;
    transition: transform var(--dur) var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.pillar-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.pillar-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

/* BLOCO 4 — Método (3 etapas) */
.method-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 960px;
    margin: 0 auto;
}

.method-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
    align-items: start;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
}
.method-step:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
@media (max-width: 600px) {
    .method-step { grid-template-columns: 1fr; padding: var(--space-md); }
}
.method-step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
    line-height: 0.85;
}
.method-step h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}
.method-step-result {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
}
.method-step-result strong {
    font-style: normal;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 4px;
}

/* BLOCO 5 — Sistema (Funil) */
.funnel {
    max-width: 1000px;
    margin: 0 auto;
}
.funnel-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: var(--space-md);
    align-items: stretch;
    margin-bottom: var(--space-lg);
}
@media (max-width: 768px) {
    .funnel-flow {
        grid-template-columns: 1fr;
    }
}

.funnel-stage {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    text-align: center;
    transition: all var(--dur) var(--ease);
    position: relative;
}
.funnel-stage:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}
.funnel-stage h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.funnel-stage ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.funnel-stage li {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}
.funnel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .funnel-arrow { transform: rotate(90deg); padding: 8px; }
}

.funnel-back {
    padding: var(--space-md);
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}
.funnel-back strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.funnel-back-items {
    color: rgba(255,255,255,0.85);
}

/* BLOCO 6 — Qualificação (É pra você / Não é) */
.qualify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .qualify-grid { grid-template-columns: 1fr; }
}
.qualify-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}
.qualify-yes {
    background: rgba(26, 102, 64, 0.12);
    border: 1px solid rgba(26, 102, 64, 0.4);
}
.qualify-no {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
}
.qualify-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
    color: var(--white);
}
.qualify-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qualify-card li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.4;
}
.qualify-yes li::before { content: '✓'; color: #4ade80; font-weight: 700; flex-shrink: 0; }
.qualify-no  li::before { content: '✗'; color: #fca5a5; font-weight: 700; flex-shrink: 0; }

/* BLOCO 7 — Diferenciais (6 cards) */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--dur) var(--ease);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.diff-card.is-featured {
    background: var(--navy);
    color: var(--white);
    border-top-width: 0;
    position: relative;
    overflow: hidden;
}
.diff-card.is-featured::before {
    content: '⭐ EXCLUSIVO';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 100px;
}
.diff-card.is-featured h3 { color: var(--white); }
.diff-card.is-featured p { color: rgba(255,255,255,0.8); }

.diff-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.diff-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}
.diff-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

/* BLOCO 8 — Tabela comparativa */
.comp-table-wrap {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}
.comp-table th,
.comp-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.93rem;
}
.comp-table thead th {
    background: var(--gray-50);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    padding: 18px 18px;
}
.comp-table thead th.col-highlight {
    background: var(--navy);
    color: var(--gold);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}
.comp-table tbody tr:last-child td { border-bottom: 0; }
.comp-table td.col-highlight {
    background: rgba(201, 168, 76, 0.08);
    font-weight: 600;
    color: var(--navy);
    border-left: 1px solid rgba(201, 168, 76, 0.3);
    border-right: 1px solid rgba(201, 168, 76, 0.3);
}
.comp-table tbody tr:last-child td.col-highlight {
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}
.comp-table th:first-child { font-weight: 600; color: var(--navy); text-transform: none; letter-spacing: 0; font-size: 0.93rem; }
.comp-row-label { font-weight: 600; color: var(--navy); }

/* BLOCO 9 — Exclusividade */
.exclusivity-section {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, #1A2744 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.exclusivity-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.exclusivity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto var(--space-lg);
}
@media (max-width: 768px) {
    .exclusivity-grid { grid-template-columns: 1fr; }
}

.excl-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--dur) var(--ease);
}
.excl-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}
.excl-icon {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    display: block;
}
.excl-card h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}
.excl-card p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.contract-note {
    max-width: 1000px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-lg);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    gap: var(--space-md);
    align-items: start;
}
@media (max-width: 600px) {
    .contract-note { flex-direction: column; }
}
.contract-note-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.contract-note-body strong {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    display: block;
    margin-bottom: 6px;
}
.contract-note-body em {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
}

/* BLOCO 10 — Antes e Depois */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}
.compare-col h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
    border-bottom: 2px solid;
}
.compare-col.is-bad h3 { color: var(--red); border-color: var(--red); }
.compare-col.is-good h3 { color: var(--green); border-color: var(--green); }
.compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.compare-col li {
    display: flex;
    gap: 10px;
    font-size: 0.97rem;
    line-height: 1.5;
    color: var(--gray-600);
}
.compare-col.is-bad li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 1.15rem; line-height: 1.3; }
.compare-col.is-good li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1.15rem; line-height: 1.3; }

/* BLOCO 11 — Prova metodológica (checklist de garantias) */
.guarantees {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}
.guarantees ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.guarantees li {
    display: flex;
    gap: 12px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--gray-100);
    font-size: 0.98rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.guarantees li:last-child { border-bottom: 0; padding-bottom: 0; }
.guarantees li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 2px;
}
.guarantees li { counter-increment: ck; }
.guarantees li::before { content: '✓'; }
.guarantees-note {
    max-width: 780px;
    margin: var(--space-lg) auto 0;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--navy);
}

/* BLOCO 12 — Pricing */
.pricing-block {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 760px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.3);
}
.pricing-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}
.pricing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 600;
    margin: var(--space-sm) 0;
    font-style: italic;
}
.pricing-amount small {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-style: normal;
    font-family: var(--font-body);
    font-weight: 400;
    margin-left: 4px;
}
.pricing-meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-md);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-md);
    max-width: 520px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.45;
}
.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-note {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    max-width: 520px;
    margin: var(--space-md) auto 0;
}

/* Tabela de sites/LPs — 4 tiers em cards */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1100px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tiers-grid { grid-template-columns: 1fr; } }

.tier-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    transition: all var(--dur) var(--ease);
    position: relative;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.tier-card.is-featured {
    border-color: var(--gold);
    border-width: 3px;
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}
@media (max-width: 1100px) {
    .tier-card.is-featured { transform: translateY(0); }
}
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    white-space: nowrap;
}
.tier-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.tier-sub {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    font-style: italic;
}
.tier-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-dark);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
}
.tier-parcels {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
}
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.tier-features li {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.4;
}
.tier-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.tier-ownership {
    text-align: center;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: auto;
    padding: var(--space-sm) 0;
}

/* Pacote recomendado (combinação) */
.combo-pack {
    margin-top: var(--space-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: var(--navy);
    position: relative;
    box-shadow: var(--shadow-gold);
}
.combo-pack h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}
.combo-pack .pricing-meta { color: rgba(27,42,74,0.75); margin-bottom: var(--space-md); }
.combo-pack p { color: rgba(27, 42, 74, 0.85); }
.combo-pack ul {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.combo-pack li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--navy);
}
.combo-pack li::before {
    content: '✓';
    color: var(--navy);
    font-weight: 700;
}
.combo-eyebrow {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
}

/* BLOCO 13 — Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 85%, transparent 100%);
}
@media (max-width: 600px) {
    .timeline::before { left: 20px; }
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}
@media (max-width: 600px) {
    .timeline-item { grid-template-columns: 50px 1fr; }
}

.timeline-week {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 600;
    font-style: italic;
    padding-top: 4px;
    text-align: right;
    padding-right: var(--space-md);
}
@media (max-width: 600px) {
    .timeline-week { text-align: left; font-size: 0.78rem; padding-right: 0; }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 102px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    z-index: 1;
}
@media (max-width: 600px) {
    .timeline-item::before { left: 12px; }
}

.timeline-content {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    margin-left: var(--space-sm);
}
.timeline-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.timeline-content p { font-size: 0.95rem; margin: 0; color: var(--gray-600); }

/* BLOCO 14 — FAQ Accordion */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: all var(--dur) var(--ease);
}
.faq-item[open] {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: var(--space-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    transition: transform var(--dur) var(--ease);
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray-600);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* BLOCO 15 — Custo da inércia */
.urgency-section {
    background: var(--navy-deep);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}
.urgency-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.6vw, 2.5rem);
    font-style: italic;
    color: var(--white);
    margin-bottom: var(--space-md);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.urgency-section .urgency-list {
    max-width: 580px;
    margin: var(--space-lg) auto;
    text-align: left;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.urgency-section .urgency-list li {
    color: rgba(255,255,255,0.75);
    display: flex;
    gap: 12px;
}
.urgency-section .urgency-list li::before {
    content: '•';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}
.urgency-final {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-style: italic;
    color: var(--gold);
    max-width: 820px;
    margin: var(--space-xl) auto 0;
    line-height: 1.35;
    font-weight: 500;
}

/* BLOCO 16 — CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.3) 0%, transparent 50%);
    pointer-events: none;
}
.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--navy);
    margin-bottom: var(--space-md);
    font-weight: 600;
}
.cta-final p {
    font-size: 1.08rem;
    color: rgba(27,42,74,0.85);
    max-width: 600px;
    margin: 0 auto var(--space-md);
}
.cta-final-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin: var(--space-lg) 0;
}
.cta-final-actions .btn-navy { box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.cta-final-actions .btn-navy:hover { transform: translateY(-2px); }
.cta-final-actions .btn-secondary { border-color: var(--navy); color: var(--navy); }
.cta-final-actions .btn-secondary:hover { background: var(--navy); color: var(--gold); }
.cta-contacts {
    display: inline-flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(27,42,74,0.2);
    font-size: 0.95rem;
    color: var(--navy);
}
.cta-contacts a { color: var(--navy); font-weight: 600; }
.cta-contacts a:hover { color: var(--navy-deep); }

/* ============================================================================
   7. FOOTER
   ============================================================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}
.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.9);
    margin-bottom: var(--space-md);
}
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-sm);
}
.footer-author {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin: 0;
}
.footer-title {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: var(--space-md);
}
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.93rem;
}
.footer-icon {
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
}
.footer-bottom {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.6;
}
.footer-bottom p { margin: 0 0 6px; }
.footer-disclaimer { font-size: 0.8rem; max-width: 820px; margin: 0 auto; }

/* ============================================================================
   8. WHATSAPP FLUTUANTE
   ============================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all var(--dur) var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1DA851;
    color: var(--white);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================================
   9. FORMULÁRIO DE CONTATO
   ============================================================================ */
.form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}
.form-field {
    margin-bottom: var(--space-md);
}
.form-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-field label .required { color: var(--gold-dark); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy);
    transition: all var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-alt {
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-100);
    font-size: 0.92rem;
    color: var(--gray-400);
}
.form-alt a { color: var(--gold-dark); font-weight: 600; }

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}
.alert-success { background: rgba(26, 102, 64, 0.1); border: 1px solid var(--green); color: var(--green); }
.alert-error   { background: rgba(139, 0, 0, 0.08); border: 1px solid var(--red); color: var(--red); }

/* ============================================================================
   10. PÁGINA SOBRE
   ============================================================================ */
.about-hero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--gray-50);
    text-align: center;
}
.about-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}
.about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: var(--space-sm);
}
.about-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: var(--gray-600);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .about-story { grid-template-columns: 1fr; }
}
.about-photo {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}
.about-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-photo-accent {
    position: absolute;
    inset: -16px -16px 16px 16px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-story-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--navy);
    padding: var(--space-md);
    border-left: 3px solid var(--gold);
    background: var(--cream);
    border-radius: var(--radius);
    margin-top: var(--space-md);
}

.credentials {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) { .credentials { grid-template-columns: 1fr; } }
.credentials li {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    font-size: 0.98rem;
    color: var(--navy);
    font-weight: 500;
}

/* ============================================================================
   11. PÁGINAS DE SERVIÇO
   ============================================================================ */
.service-hero {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}
.service-hero .service-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: block;
}
.service-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    margin-bottom: var(--space-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.service-hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.service-hero p {
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.service-list {
    list-style: none;
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-list li {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    font-size: 0.98rem;
}
.service-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* Trio de destaques (100% propriedade, ∞ uso, ↗ cresce) */
.asset-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: var(--space-xl) auto 0;
}
@media (max-width: 768px) { .asset-trio { grid-template-columns: 1fr; } }
.asset-card {
    background: var(--white);
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
}
.asset-big {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 600;
    font-style: italic;
    margin-bottom: var(--space-sm);
    display: block;
}
.asset-card h4 {
    font-family: var(--font-body);
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}
.asset-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================================================
   12. SCROLL ANIMATIONS
   ============================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   13. PRINT
   ============================================================================ */
@media print {
    .site-header, .whatsapp-float, .menu-toggle { display: none; }
    body { padding-top: 0; }
    .section { padding: var(--space-md) 0; page-break-inside: avoid; }
}
