/* ══════════════════════════════════════════
   FAST3IT — Design System v2
   Paleta: Creme · Esmeralda · Rosé Gold · Azul Sereno
   Tipografia: Playfair Display + Inter
══════════════════════════════════════════ */

/* ── 1. TOKENS ── */
:root {
    /* Cores */
    --cream:        #FAF7F2;
    --cream-dark:   #F2EDE4;
    --cream-border: #E8E0D4;
    --emerald:      #0D5C4A;
    --emerald-mid:  #1A8A6A;
    --emerald-light:#E8F3EF;
    --emerald-pale: #F0F8F5;
    --rose:         #C9986A;
    --rose-light:   #F7EEE4;
    --rose-border:  #E8D4BB;
    --blue:         #3B6FA0;
    --blue-light:   #EAF1F9;
    --warm-black:   #1A1A18;
    --text:         #2C2C2A;
    --text-mid:     #5A5752;
    --text-muted:   #8A8680;
    --white:        #FFFFFF;

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;

    /* Espaçamento */
    --container:    1180px;
    --section-v:    100px;
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    20px;

    /* Sombras */
    --shadow-sm:    0 1px 3px rgba(26,26,24,.06), 0 1px 2px rgba(26,26,24,.04);
    --shadow-md:    0 4px 16px rgba(26,26,24,.08), 0 1px 4px rgba(26,26,24,.04);
    --shadow-lg:    0 16px 48px rgba(26,26,24,.10), 0 4px 12px rgba(26,26,24,.06);
    --shadow-card:  0 2px 8px rgba(13,92,74,.06), 0 0 0 1px rgba(13,92,74,.08);
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body { overflow-x: hidden; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--warm-black);
    line-height: 1.18;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: 22px; }
h4 { font-size: 17px; }

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--emerald);
}

p {
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 16px;
}

a { color: inherit; text-decoration: none; transition: all .2s ease; }

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

/* ── 3. LAYOUT ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ── 4. TIPOGRAFIA DE SECÇÃO ── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 17px; }

/* ── 5. BOTÕES ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .22s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}
.btn-primary:hover {
    background: var(--emerald-mid);
    border-color: var(--emerald-mid);
    box-shadow: 0 8px 24px rgba(13,92,74,.24);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald);
    border-color: transparent;
    padding-left: 0;
}
.btn-ghost:hover { color: var(--emerald-mid); letter-spacing: .01em; }

.btn-full { width: 100%; }

/* ── 6. ANIMAÇÕES ── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 7. NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 72px;
    background: rgba(250,247,242,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    z-index: 200;
    transition: border-color .3s, box-shadow .3s;
}
.navbar.is-scrolled {
    border-bottom-color: var(--cream-border);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--warm-black);
    letter-spacing: -0.03em;
}
.logo-dot { color: var(--rose); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
}
.nav-links a:hover { color: var(--emerald); }

.nav-cta { padding: 10px 22px; font-size: 14px; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: 1.5px solid var(--cream-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--emerald); }
.nav-hamburger span {
    display: block; width: 100%; height: 1.5px;
    background: var(--text-mid);
    border-radius: 2px;
    transition: all .25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--cream);
    border-top: 1px solid var(--cream-border);
    padding: 20px 28px 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
    font-size: 15px; font-weight: 500;
    color: var(--text-mid);
    padding: 11px 0;
    border-bottom: 1px solid var(--cream-border);
}
.mobile-menu nav a:hover { color: var(--emerald); }
.mobile-cta { margin-top: 14px; text-align: center; border: none !important; }

/* ── 8. HERO ── */
.hero-section {
    padding-top: calc(var(--section-v) + 80px);
    padding-bottom: var(--section-v);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Decoração de fundo subtil */
.hero-section::before {
    content: '';
    position: absolute;
    top: -40px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(13,92,74,.05) 0%, transparent 65%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(201,152,106,.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

/* Eyebrow pill */
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--emerald-light);
    border: 1px solid rgba(13,92,74,.15);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 500;
    color: var(--emerald);
    margin-bottom: 28px;
}
.eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--emerald-mid);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}

.hero-title { margin-bottom: 24px; }

.hero-desc {
    font-size: 18px;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-trust span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.trust-divider {
    width: 4px; height: 4px;
    background: var(--cream-border);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── UI CARD (hero right) ── */
.hero-right { display: flex; justify-content: center; align-items: center; }

.ui-card {
    width: 100%;
    max-width: 460px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-border);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(13,92,74,.04);
    overflow: hidden;
}

.ui-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-border);
}
.ui-dots { display: flex; gap: 6px; }
.ui-dots span {
    width: 11px; height: 11px; border-radius: 50%;
}
.ui-dots span:nth-child(1) { background: #FF5F57; }
.ui-dots span:nth-child(2) { background: #FEBC2E; }
.ui-dots span:nth-child(3) { background: #28C840; }

.ui-card-title {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}
.ui-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--emerald);
    background: var(--emerald-light);
    padding: 3px 10px;
    border-radius: 99px;
    border: 1px solid rgba(13,92,74,.14);
}
.live-dot {
    width: 6px; height: 6px;
    background: var(--emerald-mid);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Feature list */
.ui-features { padding: 6px 0; }

.ui-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--cream-border);
    transition: background .18s;
}
.ui-feat:last-child { border-bottom: none; }
.ui-feat:hover { background: var(--cream); }
.ui-feat--dim { opacity: .6; }

.ui-feat-icon {
    font-size: 18px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.ui-feat-body { flex: 1; }
.ui-feat-body strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1px;
}
.ui-feat-body span {
    display: block;
    font-size: 11.5px;
    color: var(--text-muted);
}

.ui-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    flex-shrink: 0;
}
.ui-badge--on {
    background: var(--emerald-light);
    color: var(--emerald);
    border: 1px solid rgba(13,92,74,.18);
}
.ui-badge--pending {
    background: var(--rose-light);
    color: var(--rose);
    border: 1px solid var(--rose-border);
    animation: pulse-opacity 2.2s ease-in-out infinite;
}
@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50%       { opacity: .45; }
}

.ui-card-footer {
    padding: 10px 16px;
    background: var(--cream);
    border-top: 1px solid var(--cream-border);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

/* ── 9. BENEFITS STRIP ── */
.benefits-strip {
    background: var(--emerald);
    padding: 52px 0;
}
.benefits-grid {
    display: flex;
    align-items: center;
    gap: 0;
}
.benefit-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}
.benefit-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.benefit-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.benefit-item p {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.5;
}
.benefit-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* ── 10. PILARES ── */
.pillars-section {
    padding: var(--section-v) 0;
    background: var(--cream);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pillar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(13,92,74,.18);
}

.pillar-card--highlight {
    background: var(--emerald);
    border-color: var(--emerald);
}
.pillar-card--highlight h3 { color: var(--white); font-family: var(--font-display); }
.pillar-card--highlight p  { color: rgba(255,255,255,.72); }
.pillar-card--highlight .pillar-icon { filter: brightness(2); }
.pillar-card--highlight .pillar-tag {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.2);
}

.pillar-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 12px;
    letter-spacing: .06em;
}
.pillar-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.pillar-card h3 { font-size: 19px; margin-bottom: 10px; }
.pillar-card p  { font-size: 14px; line-height: 1.65; margin-bottom: 20px; flex: 1; }

.pillar-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 99px;
    background: var(--rose-light);
    color: var(--rose);
    border: 1px solid var(--rose-border);
    margin-top: auto;
    align-self: flex-start;
}
.pillar-tag--emerald {
    background: var(--emerald-light);
    color: var(--emerald);
    border-color: rgba(13,92,74,.18);
}
.pillar-tag--blue {
    background: var(--blue-light);
    color: var(--blue);
    border-color: rgba(59,111,160,.18);
}

/* ── 11. PROBLEMAS → SOLUÇÕES ── */
.problems-section {
    padding: var(--section-v) 0;
    background: var(--cream-dark);
    border-top: 1px solid var(--cream-border);
    border-bottom: 1px solid var(--cream-border);
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.problem-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-border);
    overflow: hidden;
    transition: box-shadow .25s;
}
.problem-card:hover { box-shadow: var(--shadow-md); }

.problem-before {
    padding: 24px;
    border-bottom: 1px solid var(--cream-border);
    background: #FBF5F0;
}
.problem-after {
    padding: 24px;
    background: var(--emerald-pale);
}
.problem-before p, .problem-after p {
    font-size: 14.5px;
    line-height: 1.6;
    font-style: italic;
}
.problem-before p { color: var(--text-mid); }
.problem-after p  { color: var(--emerald); font-style: normal; font-weight: 500; }

.problem-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.problem-label--after { color: var(--emerald); }

.problem-arrow {
    text-align: center;
    padding: 8px;
    font-size: 18px;
    color: var(--rose);
    background: var(--white);
    border-top: 1px solid var(--cream-border);
    border-bottom: 1px solid var(--cream-border);
}

/* ── 12. DIFERENCIAIS ── */
.diff-section {
    padding: var(--section-v) 0;
    background: var(--cream);
}
.diff-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.diff-left { padding-top: 16px; }
.diff-left h2 { margin-bottom: 20px; }
.diff-desc { margin-bottom: 32px; font-size: 17px; }

.diff-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.diff-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-md);
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.diff-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(13,92,74,.18);
    transform: translateX(4px);
}
.diff-icon {
    font-size: 24px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--emerald-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.diff-card h4 { margin-bottom: 6px; }
.diff-card p  { font-size: 14px; }

/* ── 13. COMO FUNCIONA ── */
.process-section {
    padding: var(--section-v) 0;
    background: var(--emerald);
}
.process-section .section-label { color: rgba(255,255,255,.55); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header h2 em { color: var(--rose); }
.process-section .section-header p { color: rgba(255,255,255,.65); }

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: start;
}
.process-step {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: background .2s;
}
.process-step:hover { background: rgba(255,255,255,.10); }

.process-step-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 16px;
    letter-spacing: .06em;
}
.process-step h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.process-step p  { color: rgba(255,255,255,.65); font-size: 14px; }

.process-connector {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.2);
    margin-top: 52px;
    align-self: start;
    flex-shrink: 0;
}

/* ── 14. FAQ ── */
.faq-section {
    padding: var(--section-v) 0;
    background: var(--cream-dark);
    border-top: 1px solid var(--cream-border);
}
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.faq-left { padding-top: 8px; }
.faq-left h2 { margin-bottom: 20px; }
.faq-left p  { font-size: 15px; }
.faq-contact-link { color: var(--emerald); font-weight: 600; }
.faq-contact-link:hover { text-decoration: underline; }

.faq-right { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: rgba(13,92,74,.2); box-shadow: var(--shadow-sm); }

.faq-item summary {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--warm-black);
    list-style: none;
    position: relative;
    padding-right: 28px;
    cursor: pointer;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute; right: 0;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--rose);
    top: -2px;
    line-height: 1;
}
details[open] .faq-item summary::after,
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.65;
}

/* ── 15. CTA FINAL ── */
.cta-section {
    padding: var(--section-v) 0;
    background: var(--cream);
    border-top: 1px solid var(--cream-border);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cta-left h2 { margin-bottom: 16px; }
.cta-left p  { font-size: 16px; margin-bottom: 28px; }
.cta-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-checklist li {
    font-size: 15px;
    font-weight: 500;
    color: var(--emerald);
}

/* Formulário */
.cta-right { }
.lead-form {
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}
.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--warm-black);
    margin-bottom: 24px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
}
.form-field input {
    background: var(--cream);
    border: 1.5px solid var(--cream-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.form-field input::placeholder { color: var(--text-muted); }
.form-field input:focus {
    outline: none;
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13,92,74,.10);
}
.form-field input:invalid:not(:placeholder-shown) { border-color: #c0392b; }

.lead-form .btn-primary { margin-top: 8px; }

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}
.form-success {
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.form-success[hidden] { display: none; }
.success-check { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 22px; margin-bottom: 10px; }

/* ── 16. FOOTER ── */
.footer {
    background: var(--warm-black);
    padding: 72px 0 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 40% 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.5);
    transition: color .2s, border-color .2s;
}
.social-link:hover { color: var(--white); border-color: var(--rose); }

.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4, .footer-contact h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 6px;
}
.footer-nav a, .footer-contact a, .footer-contact span {
    font-size: 14px;
    color: rgba(255,255,255,.55);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-cta { color: var(--rose) !important; font-weight: 600; }
.footer-cta:hover { color: #E0B080 !important; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── 17. RESPONSIVO ── */
@media (max-width: 1024px) {
    .hero-grid     { grid-template-columns: 1fr; gap: 56px; }
    .hero-left     { align-items: center; text-align: center; }
    .hero-desc     { max-width: 560px; }
    .hero-actions  { justify-content: center; }
    .hero-trust    { justify-content: center; }
    .hero-right    { justify-content: center; }
    .diff-inner    { grid-template-columns: 1fr; gap: 48px; }
    .cta-inner     { grid-template-columns: 1fr; gap: 48px; }
    .faq-inner     { grid-template-columns: 1fr; gap: 40px; }
    .pillars-grid  { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-v: 64px; }

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    h1 { font-size: 36px; }
    h2 { font-size: 30px; }

    .hero-desc { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .btn-ghost { text-align: center; padding-left: 0; }

    .benefits-grid  { flex-direction: column; gap: 24px; }
    .benefit-divider { width: 60px; height: 1px; }

    .pillars-grid   { grid-template-columns: 1fr; }
    .process-steps  { grid-template-columns: 1fr; }
    .process-connector { display: none; }

    .footer-grid    { grid-template-columns: 1fr; }
    .footer-bottom  { flex-direction: column; text-align: center; }
    .footer-legal   { justify-content: center; }

    .lead-form { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate]  { opacity: 1; transform: none; transition: none; }
    .eyebrow-dot,
    .live-dot,
    .ui-badge--pending { animation: none; }
}
