/* ═══════════════════════════════════════════
   FILHÃO BATERIAS — Design System
   ═══════════════════════════════════════════ */

:root {
  --orange:       #E8500A;
  --orange-dark:  #C23D00;
  --orange-light: #FF6B2B;
  --black:        #090C10;
  --dark:         #111519;
  --dark-2:       #1B2028;
  --dark-3:       #252C35;
  --white:        #FFFFFF;
  --off-white:    #F8F5F1;
  --light:        #EEE9E3;
  --mid:          #9A9590;
  --text:         #2C2926;
  --text-light:   #5A5550;
  --green:        #25D366;
  --green-dark:   #19A34A;
  --positive:     #1A7A50;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 2px 12px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.2);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

/* ─── TYPOGRAPHY SCALE ─── */
.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}
.btn-whatsapp:hover { background: #1EA852; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--orange);
  color: var(--white);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s;
}
.top-bar a:hover { opacity: .8; }
.top-bar svg { width: 16px; height: 16px; flex-shrink: 0; }
.top-bar .separator { opacity: .4; display: none; }
@media (min-width: 640px) { .top-bar .separator { display: block; } }
@media (max-width: 899px) { .top-bar { display: none; } }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 48px; width: auto; }
@media (max-width: 899px) { .logo img { height: 67px; } }

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 900px) { .main-nav { display: flex; } }

.nav-link {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }

.header-cta {
  margin-left: auto;
  display: none;
}
@media (min-width: 900px) {
  .header-cta { display: flex; margin-left: 16px; }
}

.hamburger {
  margin-left: auto;
  color: var(--white);
  padding: 11px 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
@media (max-width: 899px) {
  .hamburger { display: none; }
  .header-inner { justify-content: center; }
  .logo { margin: 0 auto; }
}

/* ─── PAGE-TOP (ticker acima do logo no mobile) ─── */
.page-top { display: flex; flex-direction: column; }
@media (max-width: 899px) {
  .page-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .ticker-wrap { order: -1; }
  .site-header {
    order: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    position: relative;
  }
  .header-inner { padding-top: 30px; }
  .hero { padding-top: 140px; }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--dark);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mobile-cta { margin-top: 20px; width: 100%; justify-content: center; }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--dark-2);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/fachada-noturna.jpg');
  background-size: 75% auto;
  background-position: right 5%;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9,12,16,1) 0%,
    rgba(9,12,16,1) 28%,
    rgba(9,12,16,.92) 42%,
    rgba(9,12,16,.55) 62%,
    rgba(9,12,16,.75) 80%,
    rgba(9,12,16,.95) 100%
  );
}

@media (max-width: 899px) {
  .hero-bg {
    background-size: cover;
    background-position: 13% 0%;
    opacity: .20;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(9,12,16,1) 0%,
      rgba(9,12,16,1) 55%,
      rgba(9,12,16,.6) 75%,
      rgba(9,12,16,.2) 100%
    );
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-inner { padding: 20px 24px 72px; }
}

.hero-content { max-width: 860px; }

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid;
}
.pill-orange { border-color: var(--orange); color: var(--orange); }
.pill-white  { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.85); }

.hero h1 {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero h1 .highlight { color: var(--orange); }
.hero h1 .hero-subtitle-line {
  font-size: clamp(22px, 2.6vw, 38px);
  opacity: .75;
  letter-spacing: .02em;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.hero-feature svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 900px) { .hero-image-wrap { display: none; } }

/* Hero store-info badge (right column) */
.hero-store-card {
  background: rgba(9,12,16,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
}

.hero-store-card-title {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-store-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-store-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-store-stat:last-child { border-bottom: none; }

.hero-store-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,80,10,.15);
  border: 1px solid rgba(232,80,10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.hero-store-stat-icon svg { width: 20px; height: 20px; }

.hero-store-stat-body strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.hero-store-stat-body span {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ─── SOCIAL PROOF BAR ─── */
.proof-bar {
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--light);
}

.proof-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  flex-shrink: 0;
}

.proof-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logos img {
  height: 26px;
  max-width: 88px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .5;
  transition: opacity .2s, filter .2s;
}
.proof-logos img:hover { filter: none; opacity: 1; }

@media (max-width: 599px) {
  .proof-bar { padding: 20px 16px; }
  .proof-bar-inner { flex-direction: column; gap: 16px; }
  .proof-logos { flex-wrap: nowrap; gap: 16px; }
  .proof-logos img { height: 22px; max-width: 72px; }
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 40px 24px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Barlow Condensed', 'Oswald', Impact, sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 14px;
}

.section-title .accent { color: var(--orange); }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
  text-wrap: balance;
}

.divider-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ─── PRODUCTS SECTION ─── */
.section-light { background: #F2F2F2; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-top: 3px solid var(--orange);
  display: flex;
  cursor: pointer;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }

/* Pills flutuando no topo do card */
.card-pills {
  display: flex;
  gap: 8px;
  padding: 16px 16px 0;
  flex-wrap: wrap;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
}
.card-pill svg { width: 13px; height: 13px; flex-shrink: 0; }
.card-pill--hot { background: var(--orange); }

.card-image {
  background: transparent;
  padding: 32px 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}
.card-image img {
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform .35s;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.18));
}
.product-card:hover .card-image img { transform: scale(1.06); }

.card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.card-name {
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
}

.card-range {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
}

.card-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
}
.card-guarantee svg { width: 14px; height: 14px; color: var(--positive); }

.card-parcel {
  background: rgba(232,80,10,.09);
  color: var(--orange-dark);
  border: 1px solid rgba(232,80,10,.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.card-parcel strong { color: var(--orange); font-size: 13px; }

.card-cta {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 13px;
}

/* ─── DELIVERY SECTION ─── */
.section-dark { background: var(--dark); color: var(--white); }

/* Delivery stats block */
.delivery-visual {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.dsb-item {
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dsb-item:last-child { border-bottom: none; }
.dsb-num {
  display: block;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.dsb-unit {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--orange);
  margin-left: 2px;
}
.dsb-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .delivery-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .dsb-item {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.07);
    padding: 20px 12px;
  }
  .dsb-item:last-child { border-right: none; }
  .dsb-item { text-align: center; }
  .dsb-num { font-size: clamp(28px, 8vw, 44px); }
  .dsb-unit { font-size: clamp(16px, 4.5vw, 26px); }
  .dsb-label { font-size: 9px; letter-spacing: 0; line-height: 1.4; }
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .delivery-grid { grid-template-columns: 1fr; gap: 40px; } }

.delivery-image {
  position: relative;
}
.delivery-image img {
  display: none;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.delivery-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.delivery-badge .badge-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
.delivery-badge .badge-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
}

.delivery-content { display: flex; flex-direction: column; gap: 20px; }

.delivery-eyebrow { color: var(--orange); }

.delivery-title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: bold;
  line-height: 1.15;
  text-wrap: balance;
}

.delivery-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
}

.delivery-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,80,10,.15);
  border: 1px solid rgba(232,80,10,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.delivery-feature-icon svg { width: 18px; height: 18px; }

.delivery-feature-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.delivery-feature-body span { font-size: 13px; color: rgba(255,255,255,.6); }

/* ─── PAY AFTER CALLOUT ─── */
.pay-after {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #B83A06 0%, var(--orange) 50%, #F06820 100%);
  padding: 40px 24px;
  color: var(--white);
}
.pay-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='white' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .07;
  pointer-events: none;
}
.pay-after-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: center;
}
.pay-after-left {
  flex-shrink: 0;
}
.pay-after-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 6px;
}
.pay-after-title {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  display: block;
}
.pay-after-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,.2);
  align-self: center;
}
.pay-after-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-after-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: .88;
  max-width: 440px;
  text-wrap: pretty;
}
.pay-after-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-method {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.pay-after-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  width: fit-content;
  transition: background .2s, color .2s, transform .15s;
}
.pay-after-btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .pay-after-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pay-after-divider { display: none; }
  .pay-after-title { font-size: clamp(64px, 18vw, 88px); }
}

/* ─── DIFFERENTIALS ─── */
.diff-section {
  position: relative;
  overflow: hidden;
}
.diff-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='white' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: .04;
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}

.diff-card {
  background: rgba(255,255,255,.04);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s;
}
.diff-card:hover { background: rgba(232,80,10,.1); }

.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,80,10,.15);
  border: 1px solid rgba(232,80,10,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.diff-icon svg { width: 22px; height: 22px; }

.diff-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--white);
  text-wrap: balance;
}
.diff-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; text-wrap: pretty; }

@media (max-width: 700px) {
  .diff-grid { grid-template-columns: 1fr; gap: 20px; background: transparent; border: none; }
  .diff-card { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.08); }
}

/* ─── GUARANTEE ─── */
.section-orange { background: var(--orange); color: var(--white); }

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.guarantee-title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: bold;
  line-height: 1.15;
}

.guarantee-desc { font-size: 16px; opacity: .9; line-height: 1.6; max-width: 560px; text-wrap: balance; }

.guarantee-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.guarantee-item svg { width: 18px; height: 18px; opacity: .9; }

/* ─── BRANDS ─── */
.brands-section { background: var(--white); }

.brands-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D4D2CF;
}
.brands-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
  white-space: nowrap;
}
.brands-claim {
  font-size: 13px;
  color: var(--text-light);
  text-align: right;
}

.brands-wall {
  display: flex;
  align-items: center;
}
.brand-slot {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  border-right: 1px solid #D4D2CF;
}
.brand-slot:last-child { border-right: none; }
.brand-slot img {
  height: 48px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brands-header { flex-direction: column; gap: 6px; }
  .brands-claim { text-align: left; }
  .brands-wall { flex-wrap: wrap; }
  .brand-slot { flex: 0 0 33.33%; border-right: none; padding: 12px 8px; }
  .brand-slot img { height: 34px; max-width: 90px; }
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  display: flex;
  gap: 3px;
}
.stars svg { width: 16px; height: 16px; color: #F5A623; fill: #F5A623; }

.testimonial-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--light);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; }
.author-meta { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.author-meta img { height: 14px; }

.google-badge {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.google-badge a {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue, #1A4FD6);
  text-decoration: underline;
}

.rating-summary {
  text-align: center;
  margin-bottom: 36px;
}
.rating-big {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: bold;
  line-height: 1;
  color: var(--text);
}
.rating-sub { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ─── FREE TEST CALLOUT ─── */
.test-callout {
  background: var(--dark-2);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--white);
  margin-bottom: 48px;
}
.test-callout svg { width: 36px; height: 36px; color: var(--orange); flex-shrink: 0; }
.test-callout-body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.test-callout-body span { font-size: 13.5px; color: rgba(255,255,255,.7); }
.test-callout .btn { margin-left: auto; flex-shrink: 0; }

@media (max-width: 640px) {
  .test-callout { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .test-callout .btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* ─── FAQ ─── */
.section-blue { background: #1A2A4A; color: var(--white); }
.section-blue .section-title { color: var(--white); }
.section-blue .section-desc { color: rgba(255,255,255,.7); }
.section-blue .divider-line { background: var(--orange); }
.section-blue .section-eyebrow { color: rgba(255,255,255,.55); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: background .15s;
}
.faq-question:hover { background: rgba(255,255,255,.05); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .15s;
}
.faq-icon svg { width: 12px; height: 12px; transition: transform .25s; }

.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 640px) {
  .final-cta-inner { gap: 12px; }
}

.final-cta-eyebrow { color: var(--orange); }

.final-cta-title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  line-height: 1.15;
}

.final-cta-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.6; }

.final-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.final-guarantee {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
@media (max-width: 640px) {
  .final-guarantee { justify-content: center; text-align: center; }
  .final-guarantee svg { margin-top: 2px; }
}
.final-guarantee svg {
  width: 22px;
  height: 22px;
  color: var(--positive);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #060810;
  color: rgba(255,255,255,.55);
  padding: 48px 24px 24px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  max-width: 220px;
}
@media (max-width: 480px) {
  .footer-brand { text-align: center; }
  .footer-brand img { height: 62px; margin-left: auto; margin-right: auto; display: block; }
  .footer-brand p { font-size: 14px; max-width: 100%; margin: 0 auto; }
}

.footer-section-title {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--orange); }

.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-hours strong { color: rgba(255,255,255,.8); font-size: 14px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform .2s, box-shadow .2s;
  animation: floatPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, .55); }
.float-wa svg { width: 30px; height: 30px; color: var(--white); }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

/* ─── SCHEMA / SKIP NAV ─── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 16px; }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .float-wa { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ─── DELIVERY TITLE (match aggressive font) ─── */
.delivery-title {
  font-family: 'Barlow Condensed', 'Oswald', Impact, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}

.guarantee-title {
  font-family: 'Barlow Condensed', 'Oswald', Impact, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 16px;
}

/* ─── STORE SECTION ─── */
.store-section {
  padding: 40px 24px;
}

.store-split {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
}

/* Fachada: painel esquerdo */
.store-split-img {
  position: relative;
  overflow: hidden;
}
.store-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.store-split-img:hover img { transform: scale(1.03); }
.store-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,12,16,.55) 0%, transparent 45%);
  pointer-events: none;
}
.store-split-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Conteúdo: painel direito */
.store-split-content {
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.store-split-header .section-title {
  font-size: clamp(22px, 3vw, 38px);
  margin-bottom: 10px;
}
.store-split-header .section-eyebrow { margin-bottom: 8px; }

/* Interior thumbnail */
.store-interior-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.store-interior-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.store-interior-img:hover img { transform: scale(1.04); }
.store-interior-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(9,12,16,.65);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Info list */
.store-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-address-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.store-address-item svg { color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }
.store-address-item a { color: inherit; transition: color .15s; }
.store-address-item a:hover { color: var(--white); }

@media (max-width: 860px) {
  .store-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .store-split-img { aspect-ratio: 16/9; }
  .store-split-content { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .store-split-content { gap: 20px; padding: 28px 20px; }
}
