/* =========================================================================
   DISK BATERIAS - DISTRITO FEDERAL
   Folha de estilo principal (style.css)
   -------------------------------------------------------------------------
   Estrutura do arquivo:
     1.  Variáveis / paleta da marca (cores Moura)
     2.  Reset e base
     3.  Tipografia
     4.  Utilitários (container, grid, botões, seções)
     5.  Cabeçalho (desktop + mobile com logo central)
     6.  Hero
     7.  Barra de confiança / selos
     8.  Modelos de bateria (cards)
     9.  Regiões de entrega
     10. Diferenciais / comparativo
     11. Avaliações (Google Meu Negócio)
     12. Sobre / FAQ
     13. Faixa de CTA + meios de pagamento
     14. Rodapé (todas as cidades)
     15. Botão flutuante WhatsApp + Pop-up + contador
     16. Animações de entrada (reveal)
     17. Responsivo (media queries)
   ========================================================================= */

/* ============================ 1. VARIÁVEIS ============================== */
:root {
  /* Paleta Moura */
  --navy-deep: #001344;   /* azul mais escuro (fundos) */
  --navy:      #041e6b;   /* azul principal Moura */
  --blue:      #0a44b8;   /* azul vivo */
  --blue-light:#2b6fe3;   /* azul claro / detalhes */
  --yellow:    #ffcc00;   /* amarelo Moura */
  --yellow-dark:#f0b400;  /* amarelo pressionado */
  --red:       #e30613;   /* vermelho "DISK" (urgência) */
  --red-dark:  #b71009;

  /* WhatsApp */
  --wa:        #25d366;
  --wa-dark:   #1da851;

  /* Neutros */
  --ink:       #10203a;   /* texto principal */
  --muted:     #5a6b85;   /* texto secundário */
  --line:      #e4e9f2;   /* bordas */
  --bg:        #ffffff;
  --bg-soft:   #f4f7fc;   /* seções alternadas */
  --white:     #ffffff;

  /* Sistema */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(4, 30, 107, .08);
  --shadow:    0 12px 30px rgba(4, 30, 107, .12);
  --shadow-lg: 0 24px 60px rgba(4, 30, 107, .20);
  --container: 1200px;
  --header-h:  76px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ============================ 2. RESET ================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================ 3. TIPOGRAFIA =========================== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }
strong { font-weight: 700; }
.hl { color: var(--red); }            /* destaque vermelho */
.hl-y { color: var(--yellow-dark); }  /* destaque amarelo */

/* ============================ 4. UTILITÁRIOS ========================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #eaf0ff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: #eaf1ff;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 18px;
}
.section-navy .eyebrow { color: var(--navy-deep); background: var(--yellow); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; }

/* --- Botões --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  padding: 15px 28px; border-radius: 100px; text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.45); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(227,6,19,.30); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(240,180,0,.35); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 18px 36px; font-size: 1.12rem; }
.btn-block { width: 100%; }
/* Destaque do parcelamento 10x sem juros */
.destaque-10x { background: var(--yellow); color: var(--navy-deep); font-weight: 800; padding: 1px 9px; border-radius: 6px; box-shadow: 0 3px 10px rgba(255,204,0,.35); white-space: nowrap; }
.parcela-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,204,0,.16); border: 2px dashed var(--yellow-dark); color: var(--navy); font-family: var(--font-head); font-weight: 700; padding: 12px 22px; border-radius: 100px; margin-bottom: 18px; font-size: 1.05rem; }
.parcela-pill svg { width: 22px; height: 22px; color: var(--yellow-dark); flex: none; }
.parcela-pill b { color: var(--red); }
.btn svg { width: 22px; height: 22px; flex: none; }

/* Foco acessível */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blue-light); outline-offset: 3px; border-radius: 6px;
}

/* ============================ 5. CABEÇALHO ============================ */
.topbar {
  background: var(--navy-deep); color: #cdd9f5;
  font-size: .84rem; font-weight: 500;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; white-space: nowrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar a:hover { color: var(--yellow); }
.topbar .tb-right { display: flex; gap: 20px; }
.topbar svg { width: 15px; height: 15px; }

.header {
  position: sticky; top: 0; z-index: 900;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav > .has-drop > button {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 500; font-size: .97rem; color: var(--navy);
  padding: 10px 14px; transition: color .18s;
}
.nav > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav > a:hover, .nav > .has-drop:hover > button { color: var(--blue); }
.nav > a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--red); }
.nav svg.caret { width: 14px; height: 14px; transition: transform .2s; }
.has-drop { position: relative; }
.has-drop:hover svg.caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s ease; z-index: 950;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; flex-direction: column; padding: 10px 12px; border-radius: 10px; font-size: .95rem; }
.dropdown a:hover { background: #eef3ff; }
.dropdown a small { color: var(--muted); font-size: .8rem; font-weight: 500; }
.dropdown a strong { color: var(--navy); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta > * { display: none; }   /* número e botão removidos do menu branco - ficam só nas páginas */
/* Telefone compacto no cabeçalho (fixo desktop) */
.header-phone { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: 10px; transition: background .15s; }
.header-phone:hover { background: #eef3ff; }
.header-phone svg { width: 30px; height: 30px; color: var(--wa); flex: none; }
.header-phone small { display: block; font-size: .72rem; color: var(--muted); line-height: 1; white-space: nowrap; }
.header-phone b { font-family: var(--font-head); font-size: 1.02rem; color: var(--navy); line-height: 1.2; white-space: nowrap; }

/* Botão sanduíche + logo central (mobile) */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; background: #eef3ff; color: var(--navy); align-items: center; justify-content: center; }
.hamburger svg { width: 26px; height: 26px; }

/* Menu mobile deslizante */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(88%, 380px);
  background: #fff; z-index: 1200; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-menu .mm-head img { height: 38px; }
.mm-close { width: 44px; height: 44px; border-radius: 12px; background: #f1f4fa; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.mm-close svg { width: 24px; height: 24px; }
.mobile-menu a { padding: 14px 12px; border-radius: 10px; font-family: var(--font-head); font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { background: #eef3ff; }
.mobile-menu a.active { background: #eef3ff; color: var(--red); border-left: 4px solid var(--red); padding-left: 14px; }
.mobile-menu a.mm-phone.active { border-left: none; padding-left: 12px; }
.mm-group-title { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 18px 0 4px; font-weight: 700; }
.mm-phone { display: flex; flex-direction: column; }
.mm-phone small { color: var(--muted); font-weight: 500; font-size: .8rem; }
.overlay { position: fixed; inset: 0; background: rgba(4,19,68,.55); z-index: 1100; opacity: 0; visibility: hidden; transition: opacity .3s; backdrop-filter: blur(2px); }
.overlay.show { opacity: 1; visibility: visible; }

/* ============================ 6. HERO ================================= */
.hero { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 60%, #000a2b 100%); color: #fff; }
.hero::before { /* raio amarelo decorativo */
  content: ""; position: absolute; top: -10%; right: -6%; width: 60%; height: 130%;
  background: linear-gradient(135deg, transparent 45%, rgba(255,204,0,.14) 46%, rgba(255,204,0,.14) 54%, transparent 55%);
  transform: rotate(8deg); pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-top: 60px; padding-bottom: 60px; z-index: 2; }
.hero-city-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); color: #eaf0ff;
  border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px);
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .11em; text-transform: uppercase;
  padding: 9px 18px 9px 14px; border-radius: 100px; margin-bottom: 22px;
  box-shadow: 0 2px 22px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-city-tag svg { width: 16px; height: 16px; color: var(--yellow); animation: locGlow 2.6s ease-in-out infinite; }
@keyframes locGlow { 0%,100% { filter: drop-shadow(0 0 3px rgba(255,204,0,.6)); } 50% { filter: drop-shadow(0 0 9px rgba(255,204,0,.95)); } }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .hl { color: var(--yellow); }
.hero .lead { color: #c9d5f2; margin-bottom: 26px; max-width: 560px; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-bottom: 30px; }
.hero-benefits li { display: flex; align-items: center; gap: 9px; font-weight: 500; color: #eaf0ff; }
.hero-benefits svg { width: 22px; height: 22px; color: var(--yellow); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; max-width: 560px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
.hero-badge {
  position: absolute; bottom: 6%; left: -2%; background: #fff; color: var(--navy);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; font-family: var(--font-head);
}
.hero-badge .b-num { font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.hero-badge small { display: block; color: var(--muted); font-size: .78rem; font-weight: 500; }

/* ============================ 7. CONFIANÇA =========================== */
.trust { background: var(--navy-deep); overflow: hidden; }
.trust .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding-block: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: #eaf0ff; }
.trust-item svg { width: 30px; height: 30px; color: var(--yellow); flex: none; }
.trust-item b { font-family: var(--font-head); display: block; font-size: 1.05rem; line-height: 1.2; }
.trust-item small { display: block; color: #9fb0d8; font-size: .82rem; margin-top: 2px; }
.trust-track { display: flex; align-items: center; width: max-content; animation: trustmarquee 32s linear infinite; }
.trust-track .trust-item { flex: none; padding: 20px 42px; border-right: 1px solid rgba(255,255,255,.08); }
.trust:hover .trust-track { animation-play-state: paused; }
@keyframes trustmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ 8. MODELOS ============================= */
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.model-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.model-card .mc-img { aspect-ratio: 4/3; background: linear-gradient(140deg, var(--navy), var(--blue)); overflow: hidden; }
.model-card .mc-img img { width: 100%; height: 100%; object-fit: cover; }
.model-card .mc-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.model-card h3 { color: var(--navy); }
.model-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.model-card .mc-cta { color: var(--red); font-family: var(--font-head); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.model-card:hover .mc-cta { gap: 12px; }
.model-card .mc-cta svg { width: 18px; height: 18px; transition: transform .2s; }

/* ============================ 9. REGIÕES ============================= */
.regions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.region-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.region-card::before { content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: var(--yellow); }
.region-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.region-card h3 svg { width: 24px; height: 24px; color: var(--blue); }
.region-card .r-phone { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--red); margin: 10px 0; }
.region-card .r-cities { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.region-card .btn-wa.btn-block { margin-top: auto; }
.region-card .r-cities span { background: #eef3ff; color: var(--navy); font-size: .85rem; font-weight: 500; padding: 5px 12px; border-radius: 100px; white-space: nowrap; }

/* ============================ 10. DIFERENCIAIS ======================= */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s;
}
.feat:hover { transform: translateY(-4px); }
.feat .ic { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(140deg, var(--blue), var(--navy)); color: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat .ic svg { width: 28px; height: 28px; }
.feat h3 { margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: .96rem; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.compare-img { background: #fff; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.compare ul { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.compare ul li { display: flex; gap: 14px; align-items: flex-start; }
.compare ul li svg { width: 26px; height: 26px; color: var(--wa); flex: none; margin-top: 2px; }
.compare ul li b { font-family: var(--font-head); color: var(--navy); }

/* ============================ 11. AVALIAÇÕES ========================= */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.g-rating { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px; box-shadow: var(--shadow-sm); }
.g-rating .g-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.g-rating .g-logo b:nth-child(1){color:#4285F4}.g-rating .g-logo b:nth-child(2){color:#EA4335}.g-rating .g-logo b:nth-child(3){color:#FBBC05}.g-rating .g-logo b:nth-child(4){color:#4285F4}.g-rating .g-logo b:nth-child(5){color:#34A853}.g-rating .g-logo b:nth-child(6){color:#EA4335}
.g-rating .score { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.stars { display: inline-flex; gap: 2px; color: #FBBC05; }
.stars svg { width: 20px; height: 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 40px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
}
.review .r-top { display: flex; align-items: center; gap: 12px; }
.review .r-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg,var(--blue),var(--navy)); color:#fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.review .r-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); }
.review .r-name small { display: block; color: var(--muted); font-weight: 500; font-size: .8rem; }
.review p { color: #3b4a63; font-size: .96rem; }
.review .g-mark { margin-top: auto; font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* ============================ 12. SOBRE / FAQ ======================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.stat { background: var(--bg-soft); border-radius: var(--radius); padding: 22px; }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--red); line-height: 1; }
.stat .l { color: var(--muted); font-size: .9rem; margin-top: 6px; }

.faq { max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.faq-q svg { width: 22px; height: 22px; color: var(--blue); transition: transform .25s; flex: none; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ============================ 13. CTA + PAGAMENTO ==================== */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, #ff3b2f 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe3e1; max-width: 620px; margin: 14px auto 28px; font-size: 1.1rem; }
.cta-band .btn-yellow { box-shadow: 0 12px 30px rgba(0,0,0,.25); }

.pay-strip { text-align: center; }
.pay-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 34px; margin-top: 26px; }
.pay-logos img { height: 34px; width: auto; opacity: .85; transition: opacity .2s, transform .2s; }
.pay-logos img:hover { opacity: 1; transform: scale(1.05); }

/* ============================ 14. RODAPÉ ============================= */
.footer { background: var(--navy-deep); color: #b9c6e8; padding-top: 48px; font-size: .92rem; }
.footer a:hover { color: var(--yellow); }
.footer-top { display: grid; grid-template-columns: 1.3fr .9fr 1.5fr 1.35fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); align-items: start; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 12px; }
.footer .f-brand img { height: 46px; margin-bottom: 18px; }
.footer .f-brand p { color: #97a7cf; max-width: 320px; }
.footer .f-social { display: flex; gap: 12px; margin-top: 18px; }
.footer .f-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; }
.footer .f-social a:hover { background: var(--yellow); color: var(--navy-deep); }
.footer .f-social svg { width: 22px; height: 22px; }
.footer ul li { margin-bottom: 7px; }
.footer-cities { columns: 2; column-gap: 20px; font-size: .85rem; }
.footer-cities li { margin-bottom: 6px; break-inside: avoid; }
.footer-cities a { display: inline-flex; align-items: center; gap: 6px; }
.footer-cities svg { width: 13px; height: 13px; color: var(--yellow); flex: none; }
.f-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.f-contact li a { display: inline-block; margin-top: 2px; }
.f-contact li strong { line-height: 1.25; }
.f-contact svg { width: 20px; height: 20px; color: var(--yellow); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; }
.footer-bottom small { color: #8595bf; }
.clicklab { display: inline-flex; align-items: center; gap: 8px; color: #b9c6e8; }
.clicklab img { height: 26px; }
.clicklab:hover { color: #fff; }

/* ============================ 15. WHATSAPP FLUTUANTE ================= */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: flex; flex-direction: column; gap: 14px; }
.call-float { width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(10,68,184,.5); transition: transform .15s, background .2s; }
.call-float:hover { background: var(--navy); transform: scale(1.06); }
.call-float svg { width: 32px; height: 32px; }
.wa-float {
  position: relative;
  width: 64px; height: 64px; border-radius: 50%; background: var(--wa);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
  animation: wa-pulse 2.2s infinite;
}
.wa-float svg { width: 36px; height: 36px; }
.wa-float:hover { background: var(--wa-dark); transform: scale(1.06); }
.wa-float .wa-ping { position: absolute; top: -3px; right: -3px; background: var(--red); color: #fff; font-size: .7rem; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Pop-up modal */
.wa-modal-overlay { position: fixed; inset: 0; background: rgba(4,19,68,.6); z-index: 1500; display: flex; align-items: center; justify-content: center; padding: 18px; opacity: 0; visibility: hidden; transition: opacity .25s; backdrop-filter: blur(3px); }
.wa-modal-overlay.show { opacity: 1; visibility: visible; }
.wa-modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(24px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wa-modal-overlay.show .wa-modal { transform: translateY(0) scale(1); }
.wa-modal-head { background: linear-gradient(140deg, var(--wa), var(--wa-dark)); color: #fff; padding: 22px 24px; position: relative; text-align: center; }
.wa-modal-head.call-head { background: linear-gradient(140deg, var(--blue), var(--navy)); }
.wa-unit.call-unit:hover { border-color: var(--blue); background: #eef3ff; }
.wa-unit.call-unit .u-ic { background: var(--blue); }
.wa-unit.call-unit .u-num { color: var(--blue); }
.wa-modal-head svg.wa-ic { width: 42px; height: 42px; margin-bottom: 6px; }
.wa-modal-head h3 { color: #fff; font-size: 1.25rem; }
.wa-modal-head p { color: #d6ffe6; font-size: .9rem; margin-top: 2px; }
.wa-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; display: flex; align-items: center; justify-content: center; }
.wa-modal-close:hover { background: rgba(255,255,255,.35); }
.wa-modal-close svg { width: 22px; height: 22px; }
.wa-modal-body { padding: 24px; }
/* Contador */
.wa-timer { background: var(--navy-deep); color: #fff; border-radius: var(--radius); padding: 16px; text-align: center; margin-bottom: 20px; }
.wa-timer .t-label { font-size: .82rem; color: #b9c6e8; display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 8px; }
.wa-timer .t-label svg { width: 17px; height: 17px; color: var(--yellow); }
.wa-timer .t-clock { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--yellow); letter-spacing: .04em; line-height: 1; }
.wa-timer .t-clock span { font-size: .8rem; color: #b9c6e8; font-weight: 500; letter-spacing: 0; }
.wa-unit-title { font-family: var(--font-head); font-weight: 600; color: var(--navy); text-align: center; margin-bottom: 14px; font-size: .98rem; }
.wa-units { display: flex; flex-direction: column; gap: 12px; }
.wa-unit {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius);
  background: #f4f7fc; border: 2px solid var(--line); transition: all .18s; text-align: left;
}
.wa-unit:hover { border-color: var(--wa); background: #eafff3; transform: translateY(-2px); }
.wa-unit .u-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.wa-unit .u-ic svg { width: 26px; height: 26px; }
.wa-unit .u-txt b { font-family: var(--font-head); color: var(--navy); font-size: 1.02rem; display: block; }
.wa-unit .u-txt small { color: var(--muted); font-size: .85rem; display: block; }
.wa-unit .u-txt .u-num { color: var(--wa-dark); font-weight: 700; font-size: .92rem; display: block; margin-top: 3px; }
.wa-modal-foot { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 16px; }

/* ====================== PÁGINAS INTERNAS ============================= */
/* Cabeçalho de página (hero compacto) */
.page-hero { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; padding: 52px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -20%; right: -4%; width: 46%; height: 150%; background: linear-gradient(135deg, transparent 46%, rgba(255,204,0,.13) 47%, rgba(255,204,0,.13) 53%, transparent 54%); transform: rotate(8deg); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .85rem; color: #9fb0d8; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero h1 { color: #fff; max-width: 860px; }
.page-hero p { color: #c9d5f2; max-width: 660px; margin-top: 14px; font-size: 1.12rem; }
.page-hero .hero-actions { margin-top: 26px; }

/* Detalhe dos modelos */
.model-row { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; margin-bottom: 30px; scroll-margin-top: 100px; }
.model-row:nth-child(even) .mr-img { order: 2; }
.model-row .mr-img { background: linear-gradient(140deg, var(--navy), var(--blue)); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.model-row .mr-img img { border-radius: var(--radius); width: 100%; }
.model-row h2 { margin-bottom: 6px; }
.model-row .m-kicker { color: var(--red); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: .82rem; letter-spacing: .1em; }
.model-row p { color: var(--muted); margin: 12px 0 18px; }
.spec-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.spec-list li { display: flex; gap: 12px; align-items: flex-start; }
.spec-list svg { width: 22px; height: 22px; color: var(--wa); flex: none; margin-top: 2px; }

/* Grade de cobertura (cidades) */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.coverage-grid a { display: flex; align-items: center; gap: 10px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font-head); font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm); transition: transform .18s, border-color .18s; }
.coverage-grid a:hover { border-color: var(--blue); transform: translateY(-3px); color: var(--blue); }
.coverage-grid svg { width: 18px; height: 18px; color: var(--yellow); flex: none; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; }
.contact-card .cc-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(140deg, var(--blue), var(--navy)); color: var(--yellow); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card .cc-ic svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 3px; }
.contact-card p { color: var(--muted); font-size: .95rem; }
.contact-card .cc-num { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--red); margin: 6px 0 10px; display: block; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .92rem; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fbfcfe; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,68,184,.15); }
.contact-form textarea { min-height: 120px; resize: vertical; }

/* Bloco de valores (sobre) */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.value .ic { width: 50px; height: 50px; border-radius: 14px; background: #eef3ff; color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: .95rem; }

@media (max-width: 820px) {
  .model-row { grid-template-columns: 1fr; gap: 24px; }
  .model-row:nth-child(even) .mr-img { order: -1; }
  .model-row .mr-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* Botão quadrado e pulsante (hero) */
.btn-square { border-radius: 12px; }
.btn-pulse { animation: btnPulse 1.9s ease-in-out infinite; }
.btn-wa:not(.btn-pulse) { animation: waSoft 2.6s ease-in-out infinite; }
@keyframes waSoft { 0%,100% { box-shadow: 0 8px 20px rgba(37,211,102,.32); } 50% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 6px rgba(37,211,102,.10); } }
/* Banner de cookies */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1400; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; display: none; align-items: center; gap: 18px; max-width: 860px; margin-inline: auto; }
.cookie-bar.show { display: flex; }
.cookie-bar p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.cookie-bar p a { color: var(--red); font-weight: 600; text-decoration: underline; }
.cookie-bar .btn { padding: 12px 24px; flex: none; }
@media (max-width: 560px) { .cookie-bar { flex-direction: column; text-align: center; align-items: stretch; gap: 12px; bottom: 90px; } }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 10px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 16px 32px rgba(37,211,102,.55), 0 0 0 16px rgba(37,211,102,0); }
}
.btn-pulse-y { animation: btnPulseY 1.9s ease-in-out infinite; }
@keyframes btnPulseY { 0%,100% { box-shadow: 0 10px 24px rgba(240,180,0,.45), 0 0 0 0 rgba(255,204,0,.55); } 50% { box-shadow: 0 16px 32px rgba(240,180,0,.6), 0 0 0 16px rgba(255,204,0,0); } }
.btn-pulse-r { animation: btnPulseR 1.9s ease-in-out infinite; }
@keyframes btnPulseR { 0%,100% { box-shadow: 0 10px 24px rgba(227,6,19,.4), 0 0 0 0 rgba(227,6,19,.5); } 50% { box-shadow: 0 16px 32px rgba(227,6,19,.55), 0 0 0 16px rgba(227,6,19,0); } }
/* Catálogo de marcas (página Baterias) */
.brand-catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.brand-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.brand-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--yellow); }
.brand-card .b-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-left: auto; background: var(--bg-soft); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.model-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.model-chips span { background: #eef3ff; color: var(--navy); font-family: var(--font-head); font-weight: 500; font-size: .82rem; padding: 6px 12px; border-radius: 8px; }
/* Centralização e ajustes no mobile */
@media (max-width: 820px) {
  .page-hero .container { text-align: center; }
  .page-hero .breadcrumb { justify-content: center; }
  .page-hero h1, .page-hero p { margin-inline: auto; }
  .page-hero .hero-actions { justify-content: center; display: flex; }
  .model-row { text-align: center; }
  .model-row .m-kicker { display: block; }
  .model-row .spec-list li { justify-content: center; text-align: left; }
  .model-row .btn { margin-inline: auto; }
  .about-grid { text-align: center; }
  .about-grid .about-stats, .about-grid .btn { text-align: left; }
}
@media (max-width: 560px) {
  .footer-top { text-align: center; }
  .footer .f-brand p { margin-inline: auto; }
  .footer .f-social { justify-content: center; }
  .f-contact { display: inline-block; text-align: left; }
  .footer-cities { display: inline-block; text-align: left; }
}
/* Glow "lançamento digital" atrás da imagem do hero */
.hero-media img { position: relative; z-index: 1; }
.hero-glow { position: absolute; left: 50%; top: 50%; width: 104%; aspect-ratio: 1; transform: translate(-50%,-50%); z-index: 0; pointer-events: none; }
.hero-glow::before { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(closest-side, rgba(43,111,227,.55), rgba(43,111,227,0) 72%); filter: blur(14px); animation: glowPulse 6s ease-in-out infinite; }
.hero-glow::after { content: ""; position: absolute; inset: -4%; border-radius: 50%; background: conic-gradient(from 0deg, rgba(255,204,0,.16), transparent 22%, rgba(43,111,227,.22) 50%, transparent 74%, rgba(255,204,0,.16)); animation: spin 22s linear infinite; opacity: .8; }
@keyframes glowPulse { 0%,100% { opacity:.7; transform: scale(1); } 50% { opacity:1; transform: scale(1.06); } }
@keyframes spin { to { transform: rotate(360deg); } }
/* Tarja rotativa infinita (após o hero) */
.marquee { background: var(--yellow); color: var(--navy-deep); overflow: hidden; white-space: nowrap; padding: 13px 0; }
.marquee-track { display: inline-flex; align-items: center; animation: marquee 34s linear infinite; will-change: transform; }
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: .96rem; text-transform: uppercase; letter-spacing: .05em; padding: 0 24px; }
.marquee-track span svg { width: 16px; height: 16px; flex: none; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Espaçamento 80% no desktop (100% no mobile) */
@media (min-width: 821px) {
  .section { padding: clamp(48px, 6.2vw, 78px) 0; }
  .section-head { margin-bottom: 34px; }
  .hero .container { padding-top: 46px; padding-bottom: 46px; }
  .page-hero { padding: 42px 0 48px; }
}

/* ============================ 16. REVEAL ============================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================ 17. RESPONSIVO ========================= */
@media (max-width: 1080px) {
  .header-phone { display: none; }
}
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero .lead, .hero-benefits { margin-inline: auto; }
  .hero-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; max-width: 480px; justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; }
  .hero::before { display: none; }
  .compare, .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .regions-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  /* Header mobile: sanduíche à esquerda, LOGO CENTRAL, CTA à direita */
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header .container { display: grid; grid-template-columns: 46px 1fr 46px; align-items: center; }
  .brand { justify-self: center; }
  .brand img { height: 40px; }
  .topbar { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 46px 0; }
  .trust .container { gap: 16px; }
  .trust-track .trust-item { padding: 16px 26px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cities { columns: 2; }
  .header-cta .btn { padding: 12px 18px; font-size: .92rem; }
  .float-stack { right: 16px; bottom: 16px; gap: 12px; }
  .wa-float, .call-float { width: 56px; height: 56px; }
}

/* ===== POLIMENTO FINAL MOBILE + PERFORMANCE ===== */
/* Segurança contra rolagem horizontal */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { min-width: 0; }
img, svg, video { max-width: 100%; }

@media (max-width: 820px) {
  /* Desliga animações pesadas de fundo no hero (bateria/fluidez) */
  .hero-glow::before, .hero-glow::after { animation: none; }
  .hero-media img { animation: none; }
  .marquee-track span { font-size: .8rem; padding: 0 16px; gap: 8px; }
  /* Botões flutuantes acima do banner de cookies */
  .float-stack { bottom: 92px; }
}

@media (max-width: 600px) {
  /* CTAs do hero alinhados e fáceis de tocar */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }
  /* Benefícios do hero em coluna única, alinhados */
  .hero-benefits { grid-template-columns: 1fr; max-width: 320px; gap: 12px; text-align: left; }
  .hero-benefits li { align-items: flex-start; }
  /* Título e destaque proporcionais */
  .hero h1 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .parcela-pill { font-size: .95rem; padding: 11px 18px; }
  /* Modais ocupam melhor a tela */
  .wa-modal { max-width: 100%; }
  .wa-timer .t-clock { font-size: 2rem; }
  .wa-unit { padding: 12px 14px; }
  .wa-unit .u-txt small { font-size: .8rem; }
  /* Catálogo de marcas em coluna única */
  .brand-catalog { grid-template-columns: 1fr; }
  /* CTA band e seções com respiro correto */
  .cta-band { padding: 32px 22px; }
  /* Rodapé: crédito Click Lab centralizado */
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-cities { columns: 1; }
  .trust-track .trust-item { padding: 14px 20px; }
  .btn-lg { padding: 15px 24px; font-size: 1.02rem; }
}
/* Botão do WhatsApp/ligação com área de toque mínima garantida */
.wa-unit, .mobile-menu a, .nav a, .btn { min-height: 44px; }
