/* ═══════════════════════════════════════════════
   ELETROPOSTO FERA — styles.css
   Dark luxury · Futuristic EV · NIO-inspired
═══════════════════════════════════════════════ */

/* ─────────────────── TOKENS ─────────────────── */
:root {
  --dark:       #09111e;
  --dark-2:     #0d1929;
  --dark-card:  #0f1e30;
  --teal:       #00d4c8;
  --teal-dim:   rgba(0, 212, 200, 0.12);
  --teal-glow:  rgba(0, 212, 200, 0.35);
  --blue:       #0a6fd8;
  --red:        #e62234;
  --white:      #ffffff;
  --gray-100:   #f0f4fa;
  --gray-400:   #8494a7;
  --gray-600:   #3d526a;
  --glass-bg:   rgba(10, 22, 40, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Titillium Web', sans-serif;

  --nav-height: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────── RESET ─────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────── BUTTONS ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 60px;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s, background 0.2s, opacity 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--dark);
  box-shadow: 0 0 0 rgba(0,212,200,0);
}
.btn--primary:hover {
  background: #00ede6;
  box-shadow: 0 8px 32px rgba(0, 212, 200, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}

.btn--nav {
  background: var(--teal);
  color: var(--dark);
  font-size: 0.8rem;
  padding: 9px 18px;
}
.btn--nav:hover { background: #00ede6; }

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(9, 17, 30, 0.45);
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(9, 17, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo img {
  height: 38px;
  width: auto;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg-img { transform: scale(1.0); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(9, 17, 30, 0.93) 0%,
    rgba(9, 17, 30, 0.78) 45%,
    rgba(9, 17, 30, 0.35) 75%,
    rgba(9, 17, 30, 0.55) 100%
  );
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 25% 60%, rgba(0,212,200,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(9,17,30,0.8) 0%, transparent 60%);
}

/* Animated scan line */
.hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 212, 200, 0.012) 3px,
    rgba(0, 212, 200, 0.012) 4px
  );
  animation: scanMove 12s linear infinite;
  opacity: 0.4;
}
@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 -100px; }
}

/* Container */
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-height);
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 48px;
}

/* Content: left */
.hero__content { max-width: 600px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 200, 0.1);
  border: 1px solid rgba(0, 212, 200, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__headline-accent {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(0,212,200,0.5);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero__sub strong { color: var(--white); font-weight: 600; }

/* Pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}

/* CTAs */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─────────────────── GLASS CARD ─────────────────── */
.card-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(0,212,200,0.06) inset,
    0 32px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(0,212,200,0.04);
}

.card-glass__header {
  margin-bottom: 24px;
}
.card-glass__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.status-dot--live {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.8); }
  50% { box-shadow: 0 0 0 rgba(34,197,94,0); }
}

.card-glass__charger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 0;
}
.charger-icon {
  width: 52px; height: 52px;
  filter: drop-shadow(0 0 16px rgba(0,212,200,0.5));
  margin-bottom: 8px;
}
.charger-power {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.charger-power span {
  font-size: 28px;
  color: var(--teal);
  vertical-align: super;
}
.charger-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.card-glass__divider {
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

/* Stats list */
.card-glass__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card-glass__stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat-value small { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.5); }

/* Charging progress bar */
.card-glass__charging-bar { }
.charging-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.charging-bar__pct { color: var(--teal); }
.charging-bar__track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.charging-bar__fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  box-shadow: 0 0 12px var(--teal-glow);
  transition: width 0.1s linear;
}

/* ─────────────────── SCROLL INDICATOR ─────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: rgba(255,255,255,0.3);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─────────────────── FLOATING WA BUBBLE ─────────────────── */
.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
  opacity: 0;
  transform: scale(0.6);
}
.wa-bubble.visible {
  opacity: 1;
  transform: scale(1);
}
.wa-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}
.wa-bubble__tooltip {
  position: absolute;
  right: 68px;
  background: rgba(9,17,30,0.95);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-bubble__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(9,17,30,0.95);
}
.wa-bubble:hover .wa-bubble__tooltip { opacity: 1; }

/* ─────────────────── ANIMATIONS ─────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
[data-anim="fade-left"] {
  transform: translateX(32px);
}
[data-anim].animated {
  opacity: 1;
  transform: translate(0);
}

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .hero__container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    padding-top: calc(var(--nav-height) + 20px);
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 80px;
  }
  .hero__content { max-width: 100%; }
  .hero__headline { font-size: clamp(64px, 15vw, 88px); }
  .hero__card { display: none; }
}

@media (max-width: 600px) {
  .nav__inner { padding: 0 20px; }
  .hero__container { padding: 0 20px; padding-top: calc(var(--nav-height) + 16px); padding-bottom: 96px; }
  .hero__headline { font-size: clamp(60px, 18vw, 80px); }
  .hero__sub { font-size: 0.95rem; }
  .hero__ctas { gap: 10px; }
  .btn--primary, .btn--ghost { font-size: 0.82rem; padding: 12px 20px; }
  .hero__badge { font-size: 0.7rem; }
  .hero__scroll { bottom: 20px; }
}


/* ═══════════════════════════════════════════════
   SECTION 2 — CHARGING EXPERIENCE
═══════════════════════════════════════════════ */

/* ─── Shared section utilities ─── */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.text-teal { color: var(--teal); }
.br-desk { display: block; }

/* ─── Experience wrapper ─── */
.experience {
  background: var(--dark-2);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,212,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.experience__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Header ─── */
.experience__header {
  text-align: center;
  margin-bottom: 72px;
}
.experience__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.experience__desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Cards grid ─── */
.exp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

/* ─── Individual card ─── */
.exp-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
}
.exp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,200,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.exp-card:hover::before { opacity: 1; }

/* Featured card (center) */
.exp-card--featured {
  background: linear-gradient(145deg, #0d1e35 0%, #0f2040 100%);
  border-color: rgba(0,212,200,0.2);
  box-shadow: 0 0 0 1px rgba(0,212,200,0.08) inset;
}
.exp-card--featured::before {
  background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0,212,200,0.1) 0%, transparent 70%);
  opacity: 1;
}
.exp-card--featured:hover {
  border-color: rgba(0,212,200,0.35);
  box-shadow: 0 0 0 1px rgba(0,212,200,0.12) inset, 0 24px 64px rgba(0,0,0,0.45);
}

.exp-card__badge-top {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,212,200,0.12);
  border: 1px solid rgba(0,212,200,0.3);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Icon wrapper */
.exp-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.exp-card__icon-wrap--teal { background: rgba(0,212,200,0.12); }
.exp-card__icon-wrap--amber { background: rgba(240,161,50,0.12); }
.exp-card__icon-wrap--blue  { background: rgba(10,111,216,0.15); }

.exp-card__icon {
  width: 26px; height: 26px;
}

/* Big number */
.exp-card__number {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--teal);
  margin-bottom: 8px;
}
.exp-card__number span {
  font-size: 28px;
  opacity: 0.7;
  vertical-align: super;
}
.exp-card__number--amber { color: #f0a132; }
.exp-card__number--blue  { color: #4da6ff; }

.exp-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
}

.exp-card__body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.exp-card__body strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Speed comparison bars */
.exp-card__compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-card__compare-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  min-width: 90px;
}
.compare-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.compare-bar {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.2s var(--ease-out-expo);
}
.compare-bar--slow { background: rgba(255,255,255,0.2); }
.compare-bar--fast {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  box-shadow: 0 0 8px var(--teal-glow);
}
/* Animate bars when card is visible */
.exp-card.animated .compare-bar { width: var(--w) !important; }

.compare-time {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  min-width: 38px;
  text-align: right;
}
.compare-time--teal { color: var(--teal); }

/* Security list */
.exp-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-card__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

/* Featured CTA button */
.exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
}
.exp-card__cta:hover {
  background: #00ede6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,200,0.35);
}

/* ─── Bottom strip ─── */
.experience__strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.strip__text {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.strip__text strong { color: var(--white); font-weight: 600; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .exp-cards { grid-template-columns: 1fr; gap: 16px; }
  .exp-card--featured { order: -1; }
  .exp-card__number { font-size: 56px; }
  .experience__strip {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .br-desk { display: none; }
}

@media (max-width: 600px) {
  .experience { padding: 80px 0 72px; }
  .experience__container { padding: 0 20px; }
  .experience__header { margin-bottom: 48px; }
  .exp-card { padding: 28px 24px; }
}


/* ═══════════════════════════════════════════════
   SECTION 3 — COMO FUNCIONA
═══════════════════════════════════════════════ */

.how {
  background: #f0f4fa;
  padding: 120px 0 100px;
  position: relative;
}

.how__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.how__header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label--dark {
  color: var(--blue);
}
.how__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 16px;
}
.how__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #5a6a7e;
}

/* Steps list */
.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual step */
.how-step {
  display: grid;
  grid-template-columns: 64px 64px 1fr;
  gap: 0 24px;
  align-items: start;
  padding-bottom: 48px;
  position: relative;
}
.how-step--last { padding-bottom: 0; }

/* Left column: number + vertical line */
.how-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.how-step__number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,212,200,0.2);
}
.how-step__number--done {
  background: #16a34a;
  color: white;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}
.how-step__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(0,212,200,0.3), rgba(0,212,200,0.05));
  margin-top: 6px;
}

/* Icon */
.how-step__icon-wrap {
  width: 64px; height: 64px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-shrink: 0;
  margin-top: 0;
}
.how-step__icon-wrap--done {
  background: #f0fdf4;
  border-color: rgba(34,197,94,0.2);
}
.how-step__icon { width: 28px; height: 28px; }

/* Content */
.how-step__content {
  padding-top: 8px;
  padding-bottom: 12px;
}
.how-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b131e;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.how-step__body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: #4a5a6e;
  margin-bottom: 14px;
}
.how-step__body strong { color: #0b131e; font-weight: 600; }

/* App badges */
.how-step__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b131e;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 8px;
}

/* Tip pill */
.how-step__tip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.2);
  color: #0a7a74;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 100px;
}

/* WhatsApp link */
.how-step__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step__wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Responsive */
@media (max-width: 640px) {
  .how { padding: 80px 0 72px; }
  .how__container { padding: 0 20px; }
  .how__header { margin-bottom: 48px; }
  .how-step {
    grid-template-columns: 44px 52px 1fr;
    gap: 0 16px;
    padding-bottom: 36px;
  }
  .how-step__icon-wrap { width: 52px; height: 52px; }
  .how-step__number { width: 38px; height: 38px; font-size: 15px; }
}




/* ═══════════════════════════════════════════════
   SECTION 4 — COMPARAÇÃO DE CUSTOS (v2)
═══════════════════════════════════════════════ */

.costs {
  background: var(--dark);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.costs::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(0,212,200,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.costs__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.costs__header { text-align: center; margin-bottom: 60px; }
.costs__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.costs__desc { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.5); }

/* ── Triple cards ── */
.costs__triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.triple-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.triple-card--fera {
  border-color: rgba(0,212,200,0.25);
  background: linear-gradient(145deg, #0d1e35, #0a1828);
  box-shadow: 0 0 0 1px rgba(0,212,200,0.07) inset, 0 16px 48px rgba(0,0,0,0.4);
}

.triple-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.triple-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.triple-card--fera .triple-card__tag { color: rgba(0,212,200,0.7); }

.triple-card__price {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.triple-card--fera .triple-card__price { color: var(--teal); }
.triple-card__price span { font-size: 17px; opacity: 0.5; vertical-align: super; }

.triple-card__per {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

/* Mini progress bar */
.triple-card__bar-wrap {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 18px;
}
.triple-bar {
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}
.triple-bar--gas  { background: rgba(255,80,80,0.55); }
.triple-bar--conv { background: rgba(255,180,50,0.5); }
.triple-bar--fera {
  background: linear-gradient(90deg, #0a6fd8, #00d4c8);
  box-shadow: 0 0 10px rgba(0,212,200,0.4);
}
/* Trigger via JS adding .bars-animate to parent */
.costs__triple.bars-animate .triple-bar { width: calc(var(--w) * 1%); }

.triple-card__monthly {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.triple-card__total {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
}
.triple-card__total small { font-size: 12px; opacity: 0.6; }
.triple-card__total--red    { color: #ff6b6b; }
.triple-card__total--yellow { color: #f0c040; }
.triple-card__total--teal   { color: var(--teal); }

/* ── Savings row ── */
.costs__savings-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, rgba(0,212,200,0.07), rgba(0,100,255,0.05));
  border: 1px solid rgba(0,212,200,0.15);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.savings-block {
  flex: 1;
  padding: 44px 40px;
  text-align: center;
}
.savings-block--minor {
  background: rgba(0,0,0,0.15);
}
.savings-block__divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.savings-block__vs {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.savings-block__number {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 100px);
  line-height: 1;
  color: var(--teal);
  text-shadow: 0 0 50px rgba(0,212,200,0.3);
  letter-spacing: 0.02em;
}
.savings-block__number::before { content: 'R$'; font-size: 0.4em; vertical-align: super; opacity: 0.65; }
.savings-block__number--sm { font-size: clamp(44px, 6vw, 68px); }
.savings-block__label {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: 10px;
}
.savings-block__year {
  display: inline-block;
  background: rgba(0,212,200,0.1);
  border: 1px solid rgba(0,212,200,0.2);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── Table ── */
.costs__table-wrap { margin-bottom: 48px; overflow-x: auto; }
.costs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.costs-table th, .costs-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.costs-table thead th {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-bottom: 14px;
}
.costs-table tbody td:first-child { color: rgba(255,255,255,0.5); }
.th-gas  { color: rgba(255,100,100,0.65) !important; }
.th-conv { color: rgba(240,190,50,0.65) !important; }
.th-ev   { color: var(--teal) !important; opacity: 0.85; }
.td-gas  { color: rgba(255,100,100,0.75); font-weight: 600; }
.td-conv { color: rgba(240,190,50,0.8); font-weight: 600; }
.td-ev   { color: var(--teal); font-weight: 600; }
.td-ev--big { font-size: 1rem; }
.costs-table__highlight td { background: rgba(0,212,200,0.04); }
.costs-table__highlight td:first-child { color: rgba(255,255,255,0.75); }
.costs__footnote { font-size: 0.7rem; color: rgba(255,255,255,0.22); margin-top: 10px; line-height: 1.5; }
.costs__cta { text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .costs { padding: 80px 0 72px; }
  .costs__container { padding: 0 20px; }
  .costs__triple { grid-template-columns: 1fr; gap: 12px; }
  .costs__savings-row { flex-direction: column; }
  .savings-block__divider { width: 100%; height: 1px; }
  .savings-block { padding: 32px 24px; }
}


/* ═══════════════════════════════════════════════
   SECTION 5 — TECNOLOGIA
═══════════════════════════════════════════════ */

.tech {
  background: #f0f4fa;
  padding: 120px 0 100px;
  position: relative;
}

.tech__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.tech__header { text-align: center; margin-bottom: 64px; }
.tech__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 16px;
}
.tech__title .text-teal { color: var(--blue); }
.tech__desc { font-size: 1rem; font-weight: 300; color: #5a6a7e; max-width: 520px; margin: 0 auto; }

/* Hero row: photo + 4 big numbers */
.tech__hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.tech__photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.tech__photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.tech__photo-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(9,17,30,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.photo-badge__model {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.photo-badge__cert {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Main 4 numbers */
.tech__main-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.main-spec-item {
  padding: 28px 36px;
}
.main-spec-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0 24px;
}
.main-spec-item__number {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: #0b131e;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.main-spec-item__number span {
  font-size: 22px;
  color: var(--blue);
  vertical-align: super;
  opacity: 0.8;
}
.main-spec-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8494a7;
}

/* Spec grid */
.tech__spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.spec-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.spec-card__icon {
  width: 36px; height: 36px;
  margin-bottom: 16px;
}
.spec-card__icon svg { width: 100%; height: 100%; }

.spec-card__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8494a7;
  margin-bottom: 4px;
}
.spec-card__value {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 8px;
  line-height: 1.1;
}
.spec-card__note {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.55;
  color: #6a7a8e;
}

/* Compatibility strip */
.tech__compat {
  background: #0b131e;
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
}
.tech__compat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.tech__compat-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.compat-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.compat-chip--more {
  background: rgba(0,212,200,0.1);
  border-color: rgba(0,212,200,0.25);
  color: var(--teal);
}
.tech__compat-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.tech__compat-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.tech__compat-note a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
  .tech__hero-row { grid-template-columns: 1fr; }
  .tech__main-specs { flex-direction: row; flex-wrap: wrap; display: flex; }
  .main-spec-item { flex: 1; min-width: 130px; }
  .main-spec-divider { display: none; }
  .tech__spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tech { padding: 80px 0 72px; }
  .tech__container { padding: 0 20px; }
  .tech__spec-grid { grid-template-columns: 1fr; }
  .tech__compat { padding: 28px 20px; }
  .main-spec-item { padding: 20px 20px; }
  .main-spec-item__number { font-size: 38px; }
}


/* ═══════════════════════════════════════════════
   SECTION 6 — GALERIA
═══════════════════════════════════════════════ */

.gallery {
  background: var(--dark-2);
  padding: 120px 0 100px;
  overflow: hidden;
}
.gallery__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery__header { text-align: center; margin-bottom: 56px; }
.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 14px;
}
.gallery__desc { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.45); }

/* ── Masonry grid ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-bottom: 48px;
}

/* Large: spans 7 cols, 2 rows */
.gallery-item--large {
  grid-column: span 7;
  grid-row: span 2;
}
/* Medium: spans 5 cols, 1 row */
.gallery-item--medium {
  grid-column: span 5;
  grid-row: span 1;
}
/* Small: spans 2-3 cols, 1 row */
.gallery-item--small {
  grid-column: span 3; /* adjusted below */
  grid-row: span 1;
}
/* Lay out explicitly */
.gallery__grid .gallery-item:nth-child(1) { grid-column: 1 / 8;  grid-row: 1 / 3; }
.gallery__grid .gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery__grid .gallery-item:nth-child(3) { grid-column: 8 / 11; grid-row: 2 / 3; }
.gallery__grid .gallery-item:nth-child(4) { grid-column: 11 / 13; grid-row: 2 / 3; }
/* Row 2 extra items if needed */
.gallery__grid .gallery-item:nth-child(5) { grid-column: 1 / 7;  grid-row: 3 / 4; }
.gallery__grid .gallery-item:nth-child(6) { grid-column: 7 / 10; grid-row: 3 / 4; }

/* If we have a 3rd row auto */
.gallery__grid { grid-template-rows: 300px 200px 260px; }

/* Individual item */
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Overlay */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,17,30,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item--large .gallery-item__overlay { opacity: 1; }

.gallery-item__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  background: rgba(9,17,30,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Bottom CTA */
.gallery__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.gallery__cta p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.btn--dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn--dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 10, 20, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.lightbox__caption {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 501;
}
.lightbox__close:hover { background: rgba(255,255,255,0.15); }

.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 501;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.14); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__grid .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery__grid .gallery-item img { height: 220px; }
  .gallery-item { height: 220px; }
  .gallery-item__overlay { opacity: 1; }
}
@media (max-width: 600px) {
  .gallery { padding: 80px 0 72px; }
  .gallery__container { padding: 0 16px; }
  .gallery__grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { height: 200px; }
  .gallery__cta { flex-direction: column; text-align: center; gap: 14px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}


/* ═══════════════════════════════════════════════
   SECTION 7 — LOCALIZAÇÃO
═══════════════════════════════════════════════ */

.location {
  background: #f0f4fa;
  padding: 120px 0 100px;
}
.location__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.location__header { text-align: center; margin-bottom: 64px; }
.location__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 14px;
}
.text-blue { color: var(--blue); }
.location__desc { font-size: 1rem; font-weight: 300; color: #5a6a7e; }

/* Split layout */
.location__split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Left info panel ── */
.location__info { display: flex; flex-direction: column; gap: 20px; }

/* Address card */
.location__address-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.address-card__icon {
  width: 44px; height: 44px;
  background: rgba(0,109,216,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.address-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b131e;
  margin-bottom: 4px;
}
.address-card__street {
  font-size: 0.88rem;
  font-weight: 400;
  color: #3a4a5e;
  margin-bottom: 2px;
}
.address-card__city {
  font-size: 0.82rem;
  color: #5a6a7e;
  margin-bottom: 2px;
}
.address-card__cep {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8494a7;
}

/* Hours card */
.location__hours {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.hours__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hours__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hours__dot--live     { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); animation: livePulse 2s infinite; }
.hours__dot--security { background: #0a6fd8; box-shadow: 0 0 6px rgba(10,111,216,0.5); }
.hours__dot--parking  { background: #f0a132; }
.hours__label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8494a7;
  margin-bottom: 2px;
}
.hours__value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0b131e;
}

/* Action buttons */
.location__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location__actions .btn {
  justify-content: center;
  border-radius: 12px;
}
.location__actions .btn--primary { background: #0a6fd8; }
.location__actions .btn--primary:hover { background: #0860c4; box-shadow: 0 8px 24px rgba(10,111,216,0.35); }
.location__actions .btn--ghost {
  border-color: rgba(0,0,0,0.15);
  color: #0b131e;
}
.location__actions .btn--ghost:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.25); }

/* Directions steps */
.location__directions {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.directions__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8494a7;
  margin-bottom: 14px;
}
.directions__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.directions__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.55;
  color: #3a4a5e;
}
.directions__list li strong { color: #0b131e; font-weight: 700; }
.dir-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #0b131e;
  color: #00d4c8;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Map ── */
.location__map-wrap {
  position: relative;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.location__map {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}

/* Floating pin label over map */
.location__map-pin {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(9,17,30,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
}
.map-pin__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: livePulse 2s infinite;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .location__split { grid-template-columns: 1fr; }
  .location__map-wrap { height: 380px; }
}
@media (max-width: 600px) {
  .location { padding: 80px 0 72px; }
  .location__container { padding: 0 20px; }
  .location__map-wrap { height: 300px; }
  .location__actions { flex-direction: column; }
}


/* ═══════════════════════════════════════════════
   SECTION 7 — LOCALIZAÇÃO
═══════════════════════════════════════════════ */

.location {
  background: #f0f4fa;
  padding: 120px 0 100px;
}
.location__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.location__header { text-align: center; margin-bottom: 60px; }
.location__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 14px;
}
.text-blue { color: var(--blue); }
.location__desc { font-size: 1rem; font-weight: 300; color: #5a6a7e; }

/* Split layout */
.location__split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Info panel ── */
.location__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Address block */
.location-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.location-address__icon {
  width: 40px; height: 40px;
  background: rgba(10,111,216,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-address__icon svg { width: 20px; height: 20px; }
.location-address__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.location-address__text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b131e;
}
.location-address__text span {
  font-size: 0.82rem;
  color: #6a7a8e;
}

/* Hours */
.location-hours {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.location-hours__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hours-dot--green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.6); }
.hours-dot--amber { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.hours-day {
  font-size: 0.85rem;
  font-weight: 400;
  color: #4a5a6e;
  flex: 1;
}
.hours-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b131e;
}

/* Steps */
.location-steps {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.location-steps__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8494a7;
  margin-bottom: 14px;
}
.location-steps__list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-steps__list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #4a5a6e;
  line-height: 1.45;
}
.location-steps__list li::before {
  content: counter(steps);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.location-steps__list li strong { color: #0b131e; font-weight: 600; }

/* CTA buttons */
.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.btn--ghost.btn--dark {
  color: #0b131e;
  border-color: rgba(0,0,0,0.15);
  background: white;
}
.btn--ghost.btn--dark:hover {
  background: #f0f4fa;
  border-color: rgba(0,0,0,0.25);
}

/* ── Map ── */
.location__map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.14);
  height: 520px;
  background: #e2e8f0;
}
.location__map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Decorative pin overlay */
.location__map-pin {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(9,17,30,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.map-pin__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0,212,200,0.7);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.map-pin__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .location__split { grid-template-columns: 1fr; }
  .location__map-wrap { height: 380px; }
}
@media (max-width: 600px) {
  .location { padding: 80px 0 72px; }
  .location__container { padding: 0 20px; }
  .location__map-wrap { height: 300px; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { min-width: unset; }
}


/* ═══════════════════════════════════════════════
   SECTION 8 — FAQ
═══════════════════════════════════════════════ */

.faq {
  background: #f0f4fa;
  padding: 120px 0 100px;
}
.faq__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq__header { text-align: center; margin-bottom: 60px; }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #0b131e;
  margin-bottom: 14px;
}
.faq__desc { font-size: 1rem; font-weight: 300; color: #5a6a7e; }

.faq__grid { display: flex; flex-direction: column; gap: 0; }

/* FAQ item */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #0b131e;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--blue); }
.faq-item__q[aria-expanded="true"] { color: var(--blue); }

/* +/- icon */
.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.3s var(--ease-out-expo);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: #0b131e;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.3s var(--ease-out-expo);
}
.faq-item__icon::before { width: 12px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 12px; }

.faq-item__q[aria-expanded="true"] .faq-item__icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon::before,
.faq-item__q[aria-expanded="true"] .faq-item__icon::after { background: white; }

/* Answer panel */
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
}
.faq-item__a.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-item__a p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4a5a6e;
  padding: 0 4px;
}
.faq-item__a p strong { color: #0b131e; font-weight: 600; }
.faq-item__a p a { color: var(--blue); font-weight: 600; text-decoration: none; }
.faq-item__a p a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .faq { padding: 80px 0 72px; }
  .faq__container { padding: 0 20px; }
  .faq-item__q { font-size: 0.92rem; padding: 18px 2px; }
}


/* ═══════════════════════════════════════════════
   SECTION 9 — CTA FINAL
═══════════════════════════════════════════════ */

.final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55);
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9,17,30,0.92) 0%,
    rgba(9,17,30,0.65) 60%,
    rgba(9,17,30,0.85) 100%
  );
}
.final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 40px;
  width: 100%;
  text-align: center;
}
.final-cta__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.final-cta__title-accent {
  color: var(--teal);
  text-shadow: 0 0 60px rgba(0,212,200,0.4);
}
.final-cta__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}
.final-cta__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn--xl {
  font-size: 1rem;
  padding: 16px 36px;
}
.final-cta__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .final-cta__container { padding: 80px 20px; }
  .final-cta__title { font-size: clamp(60px, 18vw, 90px); }
  .final-cta__btns { flex-direction: column; align-items: center; }
  .btn--xl { width: 100%; max-width: 320px; justify-content: center; }
  .final-cta__trust { gap: 12px; font-size: 0.72rem; }
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.footer {
  background: #060d18;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Brand col */
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  height: auto;
  width: auto;
  max-height: 44px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.footer__tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25D366;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  width: fit-content;
  transition: background 0.2s;
}
.footer__wa:hover { background: rgba(37,211,102,0.18); }

/* Info cols */
.footer__col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__col p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--teal); }

/* Bottom bar */
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer__bottom-right { color: rgba(255,255,255,0.15); }

/* Responsive */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__container { padding: 0 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* Exp card subtle link */
.exp-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f0a132;
  text-decoration: none;
  transition: opacity 0.2s;
}
.exp-card__link:hover { opacity: 0.7; }
