/* ============================================================
   LANDING PAGES SEO — Gianchetta Seguros
   Design system compartilhado pelas 3 landing pages locais
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --primary: #3d3d8f;
    --primary-light: #5252b5;
    --secondary: #667eea;
    --purple: #764ba2;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --wpp: #25d366;
    --dark: #0f172a;
    --ink: #334155;
    --muted: #64748b;
    --light-bg: #f8fafc;
    --card-shadow: 0 10px 30px rgba(15, 23, 42, .05), 0 1px 8px rgba(15, 23, 42, .03);
    --hover-shadow: 0 24px 48px rgba(102, 126, 234, .18);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 18px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.lp-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(61, 61, 143, .08);
}
.lp-header-inner {
    max-width: 1140px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-logo { height: 42px; display: block; image-rendering: crisp-edges; transform: translateZ(0); backface-visibility: hidden; }
.lp-nav { display: flex; gap: 26px; align-items: center; }
.lp-nav a {
    font-size: .88rem; font-weight: 600; color: var(--muted);
    position: relative; transition: color .25s;
}
.lp-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
    background: linear-gradient(90deg, var(--secondary), var(--purple));
    border-radius: 2px; transition: width .3s;
}
.lp-nav a:hover { color: var(--primary); }
.lp-nav a:hover::after { width: 100%; }
.btn-header-wpp {
    background: linear-gradient(135deg, #25d366, #1eb557);
    color: #fff; font-weight: 700; font-size: .88rem;
    padding: 11px 22px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
    transition: var(--transition);
}
.btn-header-wpp:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37, 211, 102, .45); }

/* ============ HERO ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #2c2c6e 0%, var(--primary) 38%, #5c3d8f 72%, var(--purple) 100%);
    color: #fff;
    padding: 92px 24px 130px;
    overflow: hidden;
    isolation: isolate;
}
/* orbes flutuantes */
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; z-index: -1;
    filter: blur(70px); opacity: .5;
    will-change: transform;
}
.hero::before {
    width: 480px; height: 480px; top: -160px; right: -100px;
    background: radial-gradient(circle, #818cf8, transparent 65%);
    animation: orbFloat 9s ease-in-out infinite;
}
.hero::after {
    width: 380px; height: 380px; bottom: -140px; left: -80px;
    background: radial-gradient(circle, #34d399, transparent 65%);
    animation: orbFloat 11s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-28px, 22px) scale(1.08); }
}
/* padrão de cruzes (saúde) */
.hero-pattern {
    position: absolute; inset: 0; z-index: -1; opacity: .05; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 20h8v8h8v8h-8v8h-8v-8h-8v-8h8z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 64px 64px;
}
.hero-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero-content { max-width: 600px; }
.badge-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    padding: 8px 18px; border-radius: 50px;
    font-size: .8rem; font-weight: 600; letter-spacing: .4px;
    margin-bottom: 26px;
}
.badge-chip .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .6);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); }
    70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    font-weight: 800; line-height: 1.13; letter-spacing: -.5px;
    margin-bottom: 20px;
}
.hero h1 .grad {
    background: linear-gradient(90deg, #6ee7b7, #34d399 45%, #a5b4fc);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hero .sub {
    font-size: clamp(1rem, 2vw, 1.16rem);
    color: rgba(255, 255, 255, .82);
    margin-bottom: 34px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-wpp {
    background: linear-gradient(135deg, #25d366, #1eb557);
    color: #fff; font-weight: 700; font-size: 1.02rem;
    padding: 17px 32px; border-radius: 14px;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
    transition: var(--transition);
}
.btn-wpp:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, .5); }
.btn-ghost {
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
    color: #fff; font-weight: 700; font-size: 1.02rem;
    padding: 17px 32px; border-radius: 14px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.hero-rating {
    margin-top: 30px; display: flex; align-items: center; gap: 12px;
    font-size: .9rem; color: rgba(255, 255, 255, .85);
}
.hero-rating .stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; }
.hero-rating b { color: #fff; }

/* cartões glass flutuantes */
.hero-visual { position: relative; min-height: 380px; }
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 22px 50px rgba(10, 10, 40, .35);
    display: flex; align-items: center; gap: 13px;
    color: var(--dark);
    animation: cardFloat 6s ease-in-out infinite;
}
.glass-card .gc-ico {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.glass-card .gc-t { font-family: var(--font-heading); font-weight: 700; font-size: .92rem; color: var(--dark); }
.glass-card .gc-s { font-size: .78rem; color: var(--muted); margin-top: 1px; }
.gc-1 { top: 8%; left: 4%; animation-delay: 0s; z-index: 3; }
.gc-2 { top: 42%; right: 0; animation-delay: 1.6s; z-index: 2; }
.gc-3 { bottom: 4%; left: 12%; animation-delay: 3.2s; z-index: 3; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.ico-green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.ico-indigo { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.ico-amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }

/* linha de ECG animada no rodapé do hero */
.ecg {
    position: absolute; left: 0; right: 0; bottom: 26px; z-index: 0;
    width: 100%; height: 70px; opacity: .35; pointer-events: none;
}
.ecg path {
    fill: none; stroke: #34d399; stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 320 1700;
    animation: ecgRun 5.5s linear infinite;
    will-change: stroke-dashoffset;
}
@keyframes ecgRun {
    from { stroke-dashoffset: 2020; }
    to { stroke-dashoffset: 0; }
}

/* curva de transição hero → conteúdo */
.hero-curve {
    position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
    width: 100%; height: 56px; display: block; pointer-events: none;
}

/* ============ BARRA DE ESTATÍSTICAS ============ */
.stats-bar { background: #fff; padding: 0 24px; margin-top: -52px; position: relative; z-index: 5; }
.stats-inner {
    max-width: 1040px; margin: 0 auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 61, 143, .08);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 30px 20px;
}
.stat { text-align: center; padding: 6px 12px; position: relative; }
.stat + .stat::before {
    content: ''; position: absolute; left: 0; top: 18%; bottom: 18%;
    width: 1px; background: linear-gradient(180deg, transparent, rgba(61, 61, 143, .15), transparent);
}
.stat .num {
    font-family: var(--font-heading); font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}
.stat .lbl { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ============ SEÇÕES ============ */
section.sec { padding: 88px 24px; }
.sec-light { background: var(--light-bg); }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.sec-eyebrow {
    display: inline-block; font-size: .76rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    background: linear-gradient(90deg, var(--secondary), var(--purple));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.sec-title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; letter-spacing: -.4px; line-height: 1.2; margin-bottom: 14px; }
.sec-sub { color: var(--muted); font-size: 1.02rem; }

/* ============ CARDS ============ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card-p {
    background: #fff; border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid rgba(61, 61, 143, .07);
    box-shadow: var(--card-shadow);
    position: relative; overflow: hidden;
    transition: var(--transition);
}
.card-p::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent));
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.card-p:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); }
.card-p:hover::before { transform: scaleX(1); }
.icon-chip {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem; margin-bottom: 18px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    box-shadow: inset 0 0 0 1px rgba(102, 126, 234, .15);
}
.card-p h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.card-p p { font-size: .93rem; color: var(--muted); }
.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: .86rem; font-weight: 700; color: var(--secondary);
    transition: gap .25s;
}
.card-link:hover { gap: 11px; }

/* ============ DESTAQUE / CALLOUT ============ */
.callout-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    border-radius: 24px; color: #fff;
    padding: 44px 42px;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(61, 61, 143, .3);
    margin-bottom: 60px;
}
.callout-hero::before {
    content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, .35), transparent 70%);
    top: -120px; right: -60px; filter: blur(30px);
}
.callout-hero h3 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 800; margin-bottom: 12px; position: relative; }
.callout-hero p { color: rgba(255, 255, 255, .88); max-width: 720px; position: relative; font-size: 1rem; }

/* ============ COMPARAÇÃO CPF vs CNPJ ============ */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.cmp-col {
    background: #fff; border-radius: 22px; padding: 36px 32px;
    border: 1px solid rgba(61, 61, 143, .08);
    box-shadow: var(--card-shadow);
    position: relative;
}
.cmp-col.winner {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--accent), var(--secondary)) border-box;
    box-shadow: 0 24px 56px rgba(16, 185, 129, .18);
    transform: scale(1.02);
}
.cmp-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent), #34d399);
    color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: 1.5px;
    padding: 7px 20px; border-radius: 50px; text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(16, 185, 129, .4);
    white-space: nowrap;
}
.cmp-col h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.cmp-col ul { list-style: none; }
.cmp-col li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 11px 0; font-size: .94rem; color: var(--ink);
    border-bottom: 1px dashed rgba(100, 116, 139, .15);
}
.cmp-col li:last-child { border-bottom: none; }
.cmp-col li .mk { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; margin-top: 2px; }
.mk-no { background: #fee2e2; color: #dc2626; }
.mk-yes { background: var(--accent-light); color: #047857; }

/* ============ TIMELINE / COMO FUNCIONA ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.timeline::before {
    content: ''; position: absolute; top: 30px; left: 12%; right: 12%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent));
    border-radius: 2px; opacity: .3;
}
.tl-step { text-align: center; position: relative; padding: 0 8px; }
.tl-num {
    width: 60px; height: 60px; border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--secondary), var(--purple));
    color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 26px rgba(102, 126, 234, .4);
    position: relative; z-index: 1;
    transition: var(--transition);
}
.tl-step:hover .tl-num { transform: scale(1.12) rotate(-6deg); }
.tl-step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.tl-step p { font-size: .87rem; color: var(--muted); }

/* ============ OPERADORAS ============ */
.logo-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}
.logo-cell {
    background: #fff; border-radius: 14px;
    border: 1px solid rgba(61, 61, 143, .07);
    height: 84px;
    display: flex; align-items: center; justify-content: center;
    padding: 16px 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    filter: grayscale(1); opacity: .72;
}
.logo-cell:hover { filter: grayscale(0); opacity: 1; transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.logo-cell img { max-height: 44px; max-width: 120px; object-fit: contain; }
.op-extra { text-align: center; margin-top: 22px; font-size: .9rem; color: var(--muted); }

/* ============ CIDADES ============ */
.cid-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cid-tag {
    background: #fff; border: 1px solid rgba(61, 61, 143, .12);
    border-radius: 50px; padding: 9px 22px;
    font-size: .88rem; font-weight: 600; color: var(--primary);
    display: inline-flex; align-items: center; gap: 7px;
    transition: var(--transition);
}
.cid-tag::before { content: '📍'; font-size: .8rem; }
.cid-tag:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(61, 61, 143, .25); }

/* ============ FAQ ============ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: #fff; border-radius: 16px; margin-bottom: 14px;
    border: 1px solid rgba(61, 61, 143, .08);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 16px 40px rgba(102, 126, 234, .14); }
.faq-q {
    padding: 22px 26px;
    font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--dark);
    cursor: pointer; user-select: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.15rem; font-weight: 400; line-height: 1;
    transition: transform .35s, background .35s;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: linear-gradient(135deg, var(--secondary), var(--purple)); color: #fff; }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .35s;
    padding: 0 26px; color: var(--muted); font-size: .94rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 360px; padding: 0 26px 24px; }

/* ============ CTA FINAL ============ */
.cta-final {
    position: relative;
    background: linear-gradient(135deg, #2c2c6e 0%, var(--primary) 45%, var(--purple) 100%);
    color: #fff; text-align: center;
    padding: 96px 24px;
    overflow: hidden; isolation: isolate;
}
.cta-final::before {
    content: ''; position: absolute; inset: 0; z-index: -1; opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 20h8v8h8v8h-8v8h-8v-8h-8v-8h8z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 64px 64px;
}
.cta-final::after {
    content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, .3), transparent 70%);
    top: -180px; right: -120px; filter: blur(50px); z-index: -1;
}
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 16px; }
.cta-final p { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 0 auto 36px; font-size: 1.06rem; }
.cta-note { margin-top: 22px; font-size: .85rem; color: rgba(255, 255, 255, .6); display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.lp-footer { background: #14143a; color: rgba(255, 255, 255, .6); padding: 56px 24px 32px; font-size: .88rem; }
.lp-footer-grid {
    max-width: 1140px; margin: 0 auto 36px;
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px;
}
.lp-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.lp-footer-logo { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; }
.lp-footer a { display: block; padding: 5px 0; color: rgba(255, 255, 255, .6); transition: color .25s, padding-left .25s; }
.lp-footer a:hover { color: #6ee7b7; padding-left: 5px; }
.lp-footer-bottom {
    max-width: 1140px; margin: 0 auto; padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center; font-size: .8rem; color: rgba(255, 255, 255, .4);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.wpp-float {
    position: fixed; bottom: 26px; right: 24px; z-index: 999;
    width: 62px; height: 62px; border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1eb557);
    color: #fff; font-size: 1.7rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 26px rgba(37, 211, 102, .5);
    transition: transform .25s;
}
.wpp-float::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: wppRing 2.2s ease-out infinite;
}
@keyframes wppRing {
    0% { transform: scale(.9); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}
.wpp-float:hover { transform: scale(1.1); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.4, 0, .2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

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

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 0; }
    .hero-visual { display: none; }
    .hero { padding: 64px 24px 110px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero .sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-rating { justify-content: center; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px 0; }
    .stat:nth-child(3)::before { display: none; }
    .timeline { grid-template-columns: 1fr 1fr; gap: 34px 18px; }
    .timeline::before { display: none; }
    .compare-grid { grid-template-columns: 1fr; }
    .cmp-col.winner { transform: none; }
    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-nav { display: none; }
}
@media (max-width: 540px) {
    section.sec { padding: 64px 18px; }
    .hero { padding: 52px 18px 100px; }
    .btn-wpp, .btn-ghost { width: 100%; justify-content: center; }
    .timeline { grid-template-columns: 1fr; }
    .btn-header-wpp span { display: none; }
    .btn-header-wpp { padding: 11px 14px; }
}
