/* ══════════════════════════════════════════════════════
   SBC BATERIAS — styles.css
   Magazine / Editorial Design System
══════════════════════════════════════════════════════ */

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

/* ── Design Tokens ─────────────────────────────────── */
:root {
    --y:      #FFD100;      /* yellow */
    --yd:     #E8BE00;      /* yellow dark */
    --yl:     #FFF8D0;      /* yellow light */
    --k:      #0A0A0A;      /* black */
    --d:      #141414;      /* dark */
    --d2:     #1E1E1E;      /* dark 2 */
    --d3:     #2A2A2A;      /* dark 3 */
    --g:      #6B7280;      /* gray text */
    --gl:     #9CA3AF;      /* gray light */
    --bd:     #E5E5E5;      /* border light */
    --bdk:    rgba(255,255,255,.07); /* border dark */
    --bg:     #F6F6F6;      /* bg light */
    --w:      #FFFFFF;

    --blu:    #1652D4;      /* brand blue */
    --blud:   #1040AA;      /* blue dark */
    --blul:   #2563EB;      /* blue light */
    --blull:  #EEF2FF;      /* blue very light */

    --f:      'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --r:      10px;
    --rm:     16px;
    --rl:     22px;
    --rxl:    30px;

    --sh:     0 2px 8px rgba(0,0,0,.06);
    --shm:    0 6px 24px rgba(0,0,0,.09);
    --shl:    0 16px 56px rgba(0,0,0,.13);

    --ease:   0.22s ease;
    --hh:     70px;   /* header height */
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f); background: var(--w); color: var(--d); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 24px; border-radius: var(--r);
    font-family: var(--f); font-weight: 700; font-size: .9rem;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--ease); white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 1rem; border-radius: var(--rm); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

.btn-primary { background: var(--y); color: var(--k); border-color: var(--y); }
.btn-primary:hover {
    background: var(--yd); border-color: var(--yd);
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,209,0,.4);
}
.btn-ghost {
    background: rgba(255,255,255,.08); color: var(--w);
    border-color: rgba(255,255,255,.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.45);
    transform: translateY(-2px);
}
.btn-dark { background: var(--k); color: var(--w); border-color: var(--k); }
.btn-dark:hover {
    background: var(--d2); transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.btn-outline { background: transparent; color: var(--d); border-color: var(--bd); }
.btn-outline:hover {
    border-color: var(--d); background: var(--d); color: var(--w);
    transform: translateY(-2px);
}
.btn-ghost-y {
    background: transparent; color: var(--y);
    border-color: rgba(255,209,0,.3);
}
.btn-ghost-y:hover {
    background: var(--y); color: var(--k); transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════
   SCROLL-REVEAL
══════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--bdk);
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.header.light {
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--bd);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.header-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; height: var(--hh); gap: 48px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity var(--ease);
    filter: brightness(1.08) drop-shadow(0 0 6px rgba(255,255,255,.15));
}
.logo-img:hover { opacity: .9; }
.logo-mark {
    font-size: 1.75rem; font-weight: 800;
    color: var(--y); letter-spacing: -1px; line-height: 1;
}
.logo-sub {
    font-size: 1rem; font-weight: 600;
    color: rgba(255,255,255,.85); line-height: 1;
}
.header.light .logo-sub { color: var(--d); }

/* Nav */
.nav { display: flex; gap: 38px; flex: 1; }
.nav a {
    font-size: .875rem; font-weight: 600;
    color: rgba(255,255,255,.5);
    position: relative; transition: color var(--ease);
}
.nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--y);
    border-radius: 2px; transition: width var(--ease);
}
.nav a:hover, .nav a.active { color: var(--blul); }
.nav a::after { background: var(--blul); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header.light .nav a { color: var(--g); }
.header.light .nav a:hover, .header.light .nav a.active { color: var(--blu); }
.header.light .nav a::after { background: var(--blu); }

/* Mobile toggle */
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 30px; flex-direction: column;
    justify-content: center; gap: 6px; padding: 2px;
}
.menu-toggle span {
    display: block; height: 2px; background: var(--w);
    border-radius: 2px; transition: all .3s ease;
}
.header.light .menu-toggle span { background: var(--d); }


/* ══════════════════════════════════════════════════════
   HERO — SPLIT
══════════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    background:
        radial-gradient(ellipse 65% 80% at 75% 52%, rgba(22,82,212,.45) 0%, rgba(22,82,212,.18) 40%, transparent 70%),
        radial-gradient(ellipse 45% 50% at 8% 85%, rgba(22,82,212,.28) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 50% 0%, rgba(22,82,212,.12) 0%, transparent 55%),
        var(--d);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: var(--hh);
    position: relative;
    overflow: hidden;
}

/* Decorative giant word */
.hero-bg-word {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    font-size: clamp(160px, 20vw, 260px);
    font-weight: 800; line-height: 1;
    color: rgba(255,255,255,.025);
    letter-spacing: -12px;
    pointer-events: none; user-select: none;
    z-index: 0;
}

/* Hero left */
.hero-left {
    padding: 80px 60px 80px 80px;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 0;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,209,0,.1);
    border: 1px solid rgba(255,209,0,.25);
    color: var(--y);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 28px; width: fit-content;
}

.hero-title {
    display: flex; flex-direction: column;
    font-weight: 800;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1.06; letter-spacing: -2px;
    margin-bottom: 40px;
}
.ht-dim  { color: rgba(255,255,255,.4); }
.ht-mid  { color: var(--w); }
.ht-accent { color: var(--y); }

.hero-ctas {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 36px;
}

.hero-pills {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.5);
    font-size: .75rem; font-weight: 600;
    padding: 6px 13px; border-radius: 100px;
}
.pill i { color: var(--y); font-size: .65rem; }

/* Hero right */
.hero-right {
    padding: 80px 80px 80px 40px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}

.hero-img-frame {
    position: relative; width: 100%; max-width: 500px;
    aspect-ratio: 4 / 3.2;
    border-radius: var(--rxl); overflow: hidden;
    box-shadow: 10px 10px 0 var(--blu), var(--shl);
    background: var(--d3);
}
.hero-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; border-radius: var(--rxl);
    transition: transform .5s ease;
}
.hero-img-frame:hover .hero-img { transform: scale(1.03); }

/* Fallback state when image fails */
.hero-img-frame.empty .hero-img { display: none; }
.img-fallback {
    display: none;
    position: absolute; inset: 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: rgba(255,255,255,.3);
    background: linear-gradient(135deg, var(--d2) 0%, var(--d3) 100%);
}
.hero-img-frame.empty .img-fallback { display: flex; }
.img-fallback i { font-size: 2.5rem; }
.img-fallback span { font-size: .9rem; font-weight: 600; }
.img-fallback small { font-size: .72rem; color: rgba(255,255,255,.2); }

/* Floating badge */
.hero-float-badge {
    position: absolute;
    bottom: 60px; left: 20px;
    background: var(--blu); color: var(--w);
    border-radius: var(--rm);
    padding: 16px 20px;
    display: flex; flex-direction: column; align-items: center;
    gap: 1px;
    box-shadow: 0 8px 32px rgba(22,82,212,.5);
    animation: badge-float 3s ease-in-out infinite;
}
.hero-float-badge strong {
    font-size: 2.2rem; font-weight: 800;
    line-height: 1; letter-spacing: -2px;
}
.hero-float-badge span {
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
}
.hero-float-badge small {
    font-size: .65rem; font-weight: 600;
    color: rgba(255,255,255,.6);
}
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}


/* ══════════════════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════════════════ */
.ticker {
    background: var(--blu);
    overflow: hidden;
    border-top: 2px solid var(--blud);
    border-bottom: 2px solid var(--blud);
    contain: layout style;
}
.ticker-track {
    display: flex; align-items: center;
    white-space: nowrap;
    padding: 14px 0;
    animation: ticker 24s linear infinite;
    gap: 0;
    will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
    display: inline-block; padding: 0 28px;
    font-size: .72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--w);
}
.ticker-track .sep {
    font-size: .75rem; color: rgba(255,255,255,.4); padding: 0 4px;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════
   STATS — EDITORIAL NUMBERS
══════════════════════════════════════════════════════ */
.stats {
    background: var(--w);
    border-bottom: 2px solid var(--k);
}
.stats-grid {
    display: flex;
    align-items: stretch;
    max-width: 1280px; margin: 0 auto;
}
.stat {
    flex: 1; padding: 60px 48px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background var(--ease);
    cursor: default;
}
.stat:hover { background: rgba(255,209,0,.05); }

.stat-num-wrap {
    display: flex; align-items: baseline; gap: 6px;
    line-height: 1;
}
.stat-num {
    font-size: clamp(3.5rem, 5.5vw, 5.5rem);
    font-weight: 800; color: var(--k);
    letter-spacing: -3px; font-variant-numeric: tabular-nums;
}
.stat-pct {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800; color: var(--k); letter-spacing: -1px;
}
.stat-unit {
    font-size: .85rem; font-weight: 700;
    color: var(--blu); text-transform: lowercase;
}
.stat p {
    font-size: .82rem; color: var(--g);
    line-height: 1.5; font-weight: 500;
}
.stat-sep {
    width: 1px; background: var(--bd);
    margin: 24px 0; flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════
   MARCAS — DARK EDITORIAL GRID
══════════════════════════════════════════════════════ */
.marcas {
    background: var(--k);
    padding: 100px 80px;
    position: relative; overflow: hidden;
}
.marcas-intro { margin-bottom: 64px; }
.eyebrow {
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .15em;
    color: rgba(255,255,255,.25);
    display: block; margin-bottom: 14px;
}
.marcas-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800; color: var(--w);
    line-height: 1.05; letter-spacing: -2px;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.05);
    border-radius: var(--rm);
    overflow: hidden;
}
.marca {
    background: var(--k);
    padding: 52px 44px;
    display: flex; justify-content: space-between; align-items: flex-end;
    position: relative; overflow: hidden;
    transition: background var(--ease);
    cursor: default;
}
.marca::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--y);
    transform: scaleX(0); transition: transform .35s ease;
    transform-origin: left;
}
.marca:hover { background: #111; }
.marca:hover::before { transform: scaleX(1); }

.marca-body { display: flex; flex-direction: column; gap: 12px; }
.marca-name {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; color: var(--w);
    letter-spacing: -1px; line-height: 1;
}
.marca-tag {
    display: inline-block;
    font-size: .62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    background: rgba(255,209,0,.1); color: var(--y);
    border: 1px solid rgba(255,209,0,.2);
    padding: 4px 12px; border-radius: 100px;
    width: fit-content;
}
.marca-tag.oficial {
    background: rgba(59,130,246,.1); color: #93c5fd;
    border-color: rgba(59,130,246,.2);
}
.marca-tag.parceiro {
    background: rgba(16,185,129,.1); color: #6ee7b7;
    border-color: rgba(16,185,129,.2);
}
.marca-desc {
    font-size: .8rem; font-weight: 600;
    color: rgba(255,255,255,.5);
    text-align: right; white-space: nowrap;
    position: relative; z-index: 2;
}

.marca-img {
    position: absolute;
    bottom: -6px;
    right: 28px;
    height: 155px;
    width: auto;
    object-fit: contain;
    opacity: 0.82;
    pointer-events: none;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
    transition: transform .45s ease, opacity .3s ease;
    z-index: 1;
}
.marca:hover .marca-img {
    transform: translateY(-10px) scale(1.06);
    opacity: 1;
}


/* ══════════════════════════════════════════════════════
   COMO FUNCIONA — BLUE EDITORIAL
══════════════════════════════════════════════════════ */
.como-funciona {
    background: var(--blu);
    padding: 100px 80px;
    position: relative; overflow: hidden;
}
.cf-intro { margin-bottom: 64px; }
.cf-eyebrow {
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .15em;
    color: rgba(255,255,255,.5);
    display: block; margin-bottom: 14px;
}
.cf-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: var(--w);
    line-height: 1.05; letter-spacing: -2px;
}

.cf-steps {
    border-top: 2px solid rgba(255,255,255,.18);
    margin-bottom: 56px;
}
.cf-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 40px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background var(--ease);
}
.cf-step:hover { background: rgba(0,0,0,.12); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }

.cf-num {
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 800; color: rgba(255,255,255,.15);
    line-height: 1; letter-spacing: -4px;
    font-variant-numeric: tabular-nums;
    transition: color .3s;
    user-select: none;
}
.cf-step:hover .cf-num { color: rgba(255,255,255,.28); }

.cf-content {
    display: flex; align-items: center; gap: 28px;
}
.cf-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--w);
    flex-shrink: 0;
}
.cf-content h3 {
    font-size: 1.2rem; font-weight: 700;
    color: var(--w); margin-bottom: 6px;
}
.cf-content p {
    font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65;
}
.cf-cta { text-align: left; }
.btn-cf {
    background: var(--w); color: var(--blu); border-color: var(--w);
}
.btn-cf:hover {
    background: var(--blull); border-color: var(--blull);
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25);
}


/* ══════════════════════════════════════════════════════
   PAGAMENTO — DARK SPLIT
══════════════════════════════════════════════════════ */
.pagamento {
    background: var(--d2);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}
.eyebrow-light {
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .15em;
    color: rgba(255,255,255,.25);
    display: block; margin-bottom: 16px;
}
.pag-left h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800; color: var(--w);
    line-height: 1.05; letter-spacing: -2px;
    margin-bottom: 20px;
}
.pag-left p {
    font-size: .95rem; color: rgba(255,255,255,.45);
    line-height: 1.75;
}
.pag-right {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.pag-card {
    padding: 36px 28px;
    border: 1px solid var(--bdk);
    border-radius: var(--rm);
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 10px;
    position: relative; overflow: hidden;
    background: rgba(255,255,255,.03);
    transition: all var(--ease);
}
.pag-card:hover {
    border-color: rgba(255,209,0,.4);
    background: rgba(255,209,0,.05);
    transform: translateY(-3px);
}
.pag-destaque {
    border-color: rgba(255,209,0,.3);
    background: rgba(255,209,0,.07);
}
.pag-card i { font-size: 1.8rem; color: var(--w); }
.pag-card span { font-size: 1.05rem; font-weight: 700; color: var(--w); }
.pag-card small { font-size: .78rem; color: rgba(255,255,255,.35); font-weight: 500; }
.pag-ribbon {
    position: absolute; top: 12px; right: 12px;
    background: var(--y); color: var(--k);
    font-size: .6rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
    padding: 3px 10px; border-radius: 100px;
}


/* ══════════════════════════════════════════════════════
   DIFERENCIAIS — BENEFITS GRID
══════════════════════════════════════════════════════ */
.diferenciais {
    background: var(--blull);
    padding: 80px 80px;
    border-bottom: 2px solid rgba(22,82,212,.12);
}
.dif-intro { text-align: center; margin-bottom: 52px; }
.dif-eyebrow {
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--blu); display: block; margin-bottom: 14px;
}
.dif-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--k);
    line-height: 1.05; letter-spacing: -1.5px;
}
.dif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px; margin: 0 auto;
}
.dif-item {
    background: var(--w);
    border: 1px solid rgba(22,82,212,.12);
    border-radius: var(--rm);
    padding: 32px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all var(--ease);
}
.dif-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shm);
    border-color: rgba(22,82,212,.3);
}
.dif-icon {
    width: 50px; height: 50px;
    background: var(--blu);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: var(--w);
    flex-shrink: 0;
}
.dif-text strong {
    display: block;
    font-size: .95rem; font-weight: 700; color: var(--k);
    margin-bottom: 4px; line-height: 1.3;
}
.dif-text span {
    font-size: .8rem; color: var(--g); line-height: 1.5;
}


/* ══════════════════════════════════════════════════════
   LOJAS — TWO CARDS GRID
══════════════════════════════════════════════════════ */
.lojas {
    background: var(--bg);
    padding: 100px 80px;
}
.lojas-intro { margin-bottom: 64px; }
.lojas-sub {
    margin-top: 12px;
    font-size: .95rem; color: var(--g); font-weight: 500;
}
.eyebrow-dark {
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--g); display: block; margin-bottom: 14px;
}
.lojas-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: var(--k);
    line-height: 1.05; letter-spacing: -2px;
}

.lojas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1280px; margin: 0 auto;
}

.loja-card {
    background: var(--k);
    border-radius: var(--rxl);
    overflow: hidden;
    box-shadow: var(--shl);
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease);
    border: 2px solid transparent;
}
.loja-card:hover { transform: translateY(-4px); box-shadow: 0 24px 72px rgba(0,0,0,.2); }
.loja-primary { border-color: var(--blu); }

.loja-card-photo {
    position: relative;
    background: var(--d3);
    overflow: hidden;
    height: 290px;
}
.loja-card-photo img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.loja-card:hover .loja-card-photo img { transform: scale(1.04); }
.loja-card-photo.empty img { display: none; }

.loja-card-overlay {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
}
.loja-card-tag {
    display: inline-block;
    font-size: .65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 5px 14px; border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.loja-primary .loja-card-tag {
    background: var(--blu); color: var(--w);
}
.loja-secondary .loja-card-tag {
    background: rgba(255,255,255,.18); color: var(--w);
    border: 1px solid rgba(255,255,255,.3);
}

.loja-card-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.loja-card-eyebrow {
    display: block;
    font-size: .65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--blu);
}
.loja-secondary .loja-card-eyebrow { color: var(--gl); }
.loja-card-body h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800; color: var(--w);
    line-height: 1.1; letter-spacing: -.5px;
}

.loja-info {
    list-style: none; display: flex;
    flex-direction: column; gap: 14px;
}
.loja-info li {
    display: flex; gap: 14px;
    font-size: .88rem; color: rgba(255,255,255,.65);
    align-items: flex-start; line-height: 1.5;
}
.loja-info li i {
    flex-shrink: 0; margin-top: 2px;
    color: var(--blu); width: 15px; font-size: .85rem;
}
.loja-primary .loja-info li i { color: var(--blul); }
.loja-info li a { color: rgba(255,255,255,.65); transition: color var(--ease); }
.loja-info li a:hover { color: var(--w); }
.loja-info li strong { color: var(--w); }

.loja-card-btns {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: auto;
}
.loja-card-btns .btn { width: 100%; justify-content: center; }
.btn-ghost-loja {
    background: transparent; color: var(--w);
    border-color: rgba(255,255,255,.2);
}
.btn-ghost-loja:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.4);
}


/* ══════════════════════════════════════════════════════
   GALERIA — SÃO BERNARDO DO CAMPO
══════════════════════════════════════════════════════ */
.galeria {
    background: var(--d2);
    padding: 100px 80px;
}
.galeria-inner {
    max-width: 1280px; margin: 0 auto;
}
.galeria-intro { margin-bottom: 48px; }
.galeria-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; color: var(--w);
    line-height: 1.05; letter-spacing: -2px;
}
.galeria-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 12px;
    height: 380px;
}
.galeria-item {
    border-radius: var(--rm);
    overflow: hidden;
    background: var(--d3);
}
.galeria-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-feature { border-radius: var(--rl); }
.galeria-grid-2 {
    grid-template-columns: 1fr 1fr;
    height: 380px;
}

@media (max-width: 1200px) {
    .galeria { padding: 80px 40px; }
}
@media (max-width: 768px) {
    .galeria { padding: 64px 24px; }
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
        height: auto;
    }
    .galeria-feature { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .galeria-item { height: 220px; }
    .galeria-feature { grid-column: auto; }
}


/* ══════════════════════════════════════════════════════
   DISTRIBUIÇÃO
══════════════════════════════════════════════════════ */
.distribuicao {
    background: var(--d3);
    border-top: 1px solid var(--bdk);
}
.dist-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 48px 80px;
    display: flex; align-items: center; gap: 32px;
}
.dist-icon {
    width: 60px; height: 60px;
    background: rgba(255,209,0,.08);
    border: 1px solid rgba(255,209,0,.15);
    border-radius: var(--rm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--y);
    flex-shrink: 0;
}
.dist-text h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--w); margin-bottom: 4px;
}
.dist-text p {
    font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.6;
}
.dist-inner > a { margin-left: auto; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer { background: var(--k); padding: 80px 0 0; }
.footer-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 80px 64px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    border-bottom: 1px solid var(--bdk);
}
.footer-brand p {
    margin-top: 14px; font-size: .875rem;
    color: rgba(255,255,255,.35); line-height: 1.75;
    max-width: 280px; margin-bottom: 24px;
}
.footer-logo-sub { color: rgba(255,255,255,.6); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--bdk);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem; color: rgba(255,255,255,.4);
    transition: all var(--ease);
}
.footer-social a:hover { background: var(--y); border-color: var(--y); color: var(--k); }

.footer-col h4 {
    font-size: .7rem; font-weight: 800; color: var(--w);
    text-transform: uppercase; letter-spacing: .14em; margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li {
    display: flex; gap: 10px;
    font-size: .855rem; color: rgba(255,255,255,.38);
    line-height: 1.5; align-items: flex-start;
}
.footer-col ul li i {
    flex-shrink: 0; margin-top: 2px;
    color: var(--y); width: 14px; font-size: .8rem;
}
.footer-col ul li a { color: rgba(255,255,255,.38); transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--w); }

.footer-bottom {
    max-width: 1280px; margin: 0 auto;
    padding: 22px 80px;
    font-size: .75rem; color: rgba(255,255,255,.2);
    text-align: center;
}


/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 9999;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; pointer-events: none;
    transition: opacity .4s ease;
}
.wa-float.show { opacity: 1; pointer-events: auto; }
.wa-float i {
    width: 62px; height: 62px;
    background: #25D366; color: var(--w);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 24px rgba(37,211,102,.4);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
    order: 2; flex-shrink: 0;
}
/* Ring animado com propriedades compostas (transform + opacity) — não gera reflow/repaint */
.wa-float i::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(37,211,102,.65);
    animation: wa-ring 2.5s ease-in-out infinite;
    pointer-events: none;
}
.wa-float:hover i {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.wa-float:hover i::after { animation-play-state: paused; opacity: 0; }
.wa-tooltip {
    background: var(--k); color: var(--w);
    font-family: var(--f); font-size: .78rem; font-weight: 600;
    padding: 8px 14px; border-radius: var(--r);
    white-space: nowrap;
    opacity: 0; transform: translateX(10px);
    transition: opacity var(--ease), transform var(--ease);
    pointer-events: none; order: 1;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes wa-ring {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(2);   opacity: 0; }
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1200px
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 80px 40px 40px 40px; }
    .hero-right { display: none; }
    .hero-bg-word { font-size: 140px; opacity: .015; }

    .marcas, .como-funciona, .lojas { padding: 80px 40px; }
    .diferenciais { padding: 80px 40px; }
    .pagamento { padding: 80px 40px; gap: 48px; }
    .dist-inner { padding: 40px; }
    .footer-inner { padding: 0 40px 56px; gap: 48px; }
    .footer-bottom { padding: 22px 40px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-grid { flex-wrap: wrap; }
    .stat { flex: 1 1 45%; border-bottom: 1px solid var(--bd); }
    .stat-sep { display: none; }

    .pagamento { grid-template-columns: 1fr; gap: 40px; }

    .dif-grid { grid-template-columns: repeat(2, 1fr); }
    .lojas-grid { gap: 16px; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --hh: 62px; }
    .ticker-track { animation-duration: 6s; }
    .header-inner { padding: 0 20px; gap: 16px; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    /* Mobile nav dropdown */
    .nav {
        display: none;
        position: fixed; top: var(--hh); left: 0; right: 0;
        background: rgba(10,10,10,.98);
        padding: 32px 24px;
        flex-direction: column; gap: 22px;
        border-bottom: 1px solid var(--bdk);
        box-shadow: 0 16px 48px rgba(0,0,0,.5);
        z-index: 998;
    }
    .nav.open { display: flex; }
    .nav a { font-size: 1.1rem; color: rgba(255,255,255,.7); }

    /* Hero */
    .hero-left { padding: 56px 24px 56px; }
    .hero-title { letter-spacing: -.5px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-pills { gap: 6px; }

    /* Stats */
    .stat { flex: 1 1 100%; }

    /* Marcas */
    .marcas { padding: 64px 24px; }
    .marcas-grid { grid-template-columns: 1fr; gap: 2px; }
    .marca {
        padding: 36px 28px 40px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
        min-height: 230px;
    }
    .marca-desc { align-self: flex-start; margin-top: auto; }
    .marca-img { height: 90px; bottom: -4px; right: 16px; }

    /* Como funciona */
    .como-funciona { padding: 64px 24px; }
    .cf-step { grid-template-columns: 80px 1fr; gap: 20px; padding: 36px 0; }
    .cf-content { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Pagamento */
    .pagamento { padding: 64px 24px; }
    .pag-right { grid-template-columns: repeat(2, 1fr); }

    /* Lojas */
    .lojas { padding: 64px 24px; }
    .diferenciais { padding: 64px 24px; }
    .dif-grid { grid-template-columns: 1fr; }
    .lojas-grid { grid-template-columns: 1fr; }
    .loja-card-photo { height: 260px; }
    .loja-card-body { padding: 32px 24px; gap: 20px; }

    /* Distribuição */
    .dist-inner { padding: 32px 24px; flex-wrap: wrap; gap: 20px; }
    .dist-inner > a { margin-left: 0; width: 100%; justify-content: center; }

    /* Footer */
    .footer-inner { padding: 0 24px 48px; grid-template-columns: 1fr; gap: 36px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { padding: 20px 24px; }

    /* WhatsApp */
    .wa-float { bottom: 20px; right: 20px; }
    .wa-float i { width: 54px; height: 54px; font-size: 1.5rem; }
    .wa-tooltip { display: none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .marcas-intro h2, .cf-intro h2,
    .pag-left h2, .lojas-intro h2 { font-size: 2.2rem; letter-spacing: -1px; }

    .hero-title { font-size: 2.4rem; }
    .pag-right { grid-template-columns: 1fr; }
    .loja-card-photo { height: 220px; }
    .loja-card-body { padding: 28px 20px; gap: 18px; }
    .dif-item { padding: 24px 20px; }
}
