/* ========================================================
   BATERÍAS LA 27 — Sistema de diseño
   ======================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Tinta / superficies oscuras */
  --ink:        #0E0F13;
  --ink-2:      #14161B;
  --ink-3:      #1C1F26;
  --ink-line:   #2A2E37;

  /* Papel / claros */
  --paper:      #FFFFFF;
  --paper-2:    #F7F8FA;
  --paper-3:    #EFF1F4;
  --line:       #E4E7EC;
  --line-2:     #D6DAE1;

  /* Texto */
  --text:       #21242B;
  --text-2:     #545B66;
  --text-3:     #8A909B;

  /* Marca */
  --brand:      #E01E26;
  --brand-ink:  #B0151C;
  --brand-soft: #FBEBEC;
  --amber:      #F5A623;

  /* Acentos funcionales */
  --wa:         #25D366;
  --wa-ink:     #1EA855;

  /* Radios / sombras */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --sh-sm: 0 1px 2px rgba(16,18,23,.06), 0 1px 3px rgba(16,18,23,.05);
  --sh:    0 4px 16px rgba(16,18,23,.07), 0 2px 4px rgba(16,18,23,.04);
  --sh-lg: 0 18px 50px rgba(16,18,23,.13);
  --sh-brand: 0 10px 30px rgba(224,30,38,.25);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t: .28s var(--ease);

  --maxw: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

h1,h2,h3,h4 { font-family: 'Sora', 'Inter', sans-serif; color: var(--ink); line-height: 1.12; letter-spacing: -.02em; }
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Layout helpers ---------- */
.contenedor { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.seccion { padding: 96px 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
}
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }

.cab { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.cab .kicker { justify-content: center; margin-bottom: 16px; }
.cab h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); font-weight: 700; }
.cab p { color: var(--text-2); font-size: 1.06rem; margin-top: 14px; }

.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 11px;
  font-weight: 650; font-size: .98rem; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: all 0.3s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
}
.btn .icon { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.btn:active { transform: translateY(-1px); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.24); }
.btn-wa:hover { background: var(--wa-ink); box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-wa .icon { fill: #fff; stroke: none; }

.btn-brand { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-brand:hover { background: var(--brand-ink); box-shadow: 0 10px 24px rgba(224,30,38,.35); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); box-shadow: 0 8px 20px rgba(14,15,19,0.2); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }

.btn-ghost-light { background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(10, 11, 14, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.navbar.scrolled {
  background: rgba(10, 11, 14, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.18)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.08rem; color: #fff; letter-spacing: -.02em; text-shadow: 0 0 10px rgba(255, 255, 255, 0.15); }
.brand-text span { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a {
  padding: 9px 14px; border-radius: 8px;
  font-size: .92rem; font-weight: 600; color: rgba(255, 255, 255, 0.72);
  transition: color var(--t), background var(--t);
}
.nav-links > a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); text-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }
.nav-links > a.activo { color: #FF2E3B; text-shadow: 0 0 10px rgba(255, 46, 59, 0.25); }
.nav-cta {
  margin-left: 10px; display: inline-flex; align-items: center; gap: 8px;
  background: #FF2E3B; color: #fff !important;
  padding: 10px 18px !important; border-radius: 9px !important;
  font-weight: 600; transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 12px rgba(255, 46, 59, 0.25);
}
.nav-cta:hover { background: #e01b24 !important; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 46, 59, 0.4); }
.nav-cta .icon { width: 17px; height: 17px; fill: #fff; stroke: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px; background: rgba(255, 255, 255, 0.05); padding: 0; place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: #fff; }

/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, rgba(14, 15, 19, 1) 0%, rgba(14, 15, 19, 0.95) 40%, rgba(14, 15, 19, 0.3) 70%, rgba(14, 15, 19, 0) 100%), url('assets/img/hero-bg.png') no-repeat right center;
  background-size: cover;
  color: #fff; padding: 150px 0 110px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 20%, #000 0%, transparent 75%);
          mask-image: radial-gradient(80% 80% at 70% 20%, #000 0%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; opacity: 0.42;
}
.hero-glow { position: absolute; top: -100px; left: 30%; transform: translateX(-50%); width: 700px; height: 500px; background: radial-gradient(circle, rgba(224,30,38,.2) 0%, transparent 65%); filter: blur(40px); pointer-events: none; z-index: 1; }
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; text-align: left; max-width: var(--maxw); margin: 0 auto; gap: 0; }

.hero-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; max-width: 650px; }
.hero h1 { font-size: clamp(1.8rem, 4.2vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; text-align: left; }

/* Animación súper cargada para la palabra ENERGÍA */
.electric-word {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, #fff 0%, #ff2e3b 45%, #ff858c 55%, #ff2e3b 65%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flowElectric 12.0s linear infinite, sparkElectric 0.8s ease-in-out infinite alternate;
  font-weight: 900;
  padding: 0 4px;
}
.electric-word::before, .electric-word::after {
  content: ''; position: absolute; width: 22px; height: 22px; background-size: contain; background-repeat: no-repeat; pointer-events: none; opacity: 0; mix-blend-mode: screen;
}
.electric-word::before {
  left: -16px; top: 50%; transform: translateY(-50%) scale(0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF2E3B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E");
  animation: sparkLeapLeft 6.0s ease-in-out infinite;
}
.electric-word::after {
  right: -16px; top: 50%; transform: translateY(-50%) scale(0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF2E3B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E");
  animation: sparkLeapRight 6.0s ease-in-out infinite 3.0s;
}

@keyframes flowElectric {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes sparkElectric {
  0% { text-shadow: 0 0 2px rgba(255,46,59,0.18); }
  100% { text-shadow: 0 0 5px rgba(255,46,59,0.42); }
}
@keyframes sparkLeapLeft {
  0%, 100% { opacity: 0; transform: translateY(-50%) translate(0, 0) scale(0.3) rotate(0deg); }
  6% { opacity: 0.55; transform: translateY(-50%) translate(-8px, -4px) scale(0.7) rotate(-10deg); }
  12% { opacity: 0; transform: translateY(-50%) translate(-16px, -8px) scale(0.3) rotate(-20deg); }
}
@keyframes sparkLeapRight {
  0%, 100% { opacity: 0; transform: translateY(-50%) translate(0, 0) scale(0.3) rotate(0deg); }
  6% { opacity: 0.55; transform: translateY(-50%) translate(8px, 4px) scale(0.7) rotate(15deg); }
  12% { opacity: 0; transform: translateY(-50%) translate(16px, 8px) scale(0.3) rotate(30deg); }
}

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.76); margin: 20px 0 28px; max-width: 650px; line-height: 1.65; text-align: left; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 14px; margin-bottom: 46px; z-index: 2; position: relative; }

/* Barra premium de características */
.hero-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 700px;
  margin: 0 0 28px;
  z-index: 2;
  position: relative;
}
.feat-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.feat-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.feat-icon-box {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feat-icon-box svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

/* Brillos de iconos */
.red-glow {
  background: rgba(224, 30, 38, 0.1);
  color: #FF2E3B;
}
.blue-glow {
  background: rgba(0, 210, 255, 0.1);
  color: #00D2FF;
}
.green-glow {
  background: rgba(56, 214, 110, 0.1);
  color: #38D66E;
}

.feat-content h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
.feat-content p {
  display: none !important;
}

.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 30px; z-index: 2; position: relative; }
.hero-stat { padding-right: 38px; margin-right: 38px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-stat:last-child { border: 0; margin: 0; padding: 0; }
.hero-stat b { display: block; font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat b i { color: var(--brand); font-style: normal; }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 7px; display: block; }

/* Visual: Batería Real Vectorial e Interactiva */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; z-index: 2; }
.battery-stage {
  position: relative; display: flex; justify-content: center; align-items: center;
  width: 100%; max-width: 380px; height: 380px;
}
.battery-stage::before {
  content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,30,38,0.18) 0%, rgba(0,210,255,0.05) 50%, rgba(0,0,0,0) 70%);
  filter: blur(25px);
  animation: pulseGlow 8s ease-in-out infinite alternate;
  pointer-events: none; z-index: 1;
}
.tech-rings-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.tech-ring {
  transform-origin: center center;
  will-change: transform;
}
.battery-hero-svg {
  position: relative; width: 100%; max-width: 290px; height: auto;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.55));
  z-index: 2; transform-origin: 200px 200px;
  will-change: transform;
}
.battery-charge-bar {
  transition: height 0.35s var(--ease), y 0.35s var(--ease), fill 0.5s var(--ease);
}
.diagnostic-wave {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: wavePulse 3s linear infinite;
}
#lightning-arc-pos, #lightning-arc-neg, #lightning-arc-center {
  stroke-linecap: round; stroke-linejoin: round;
  will-change: d;
}

@keyframes wavePulse {
  to { stroke-dashoffset: 0; }
}
@keyframes pulseGlow {
  0% { transform: scale(0.96); opacity: 0.8; }
  100% { transform: scale(1.04); opacity: 1; }
}

/* ========================================================
   FRANJA DE MARCAS (Pasarela / Marquee)
   ======================================================== */
.trust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 16, 22, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px 0;
  z-index: 3;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
  width: 100%;
}
.trust-label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-wrapper {
  overflow: hidden;
  display: flex;
  flex: 1;
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.trust-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -.01em;
  transition: color var(--t), transform var(--t);
  cursor: pointer;
}
.trust-logo:hover {
  color: #fff;
  transform: translateY(-1px);
}
.trust-logo.lth {
  color: rgba(255, 255, 255, 0.6);
}
.trust-logo.lth:hover {
  color: #00D2FF;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ========================================================
   BUSCADOR
   ======================================================== */
.buscador { background: var(--paper-2); }
.finder {
  background: linear-gradient(145deg, #121318 0%, #08090b 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  padding: 50px 52px;
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}
.finder::before { content:''; position:absolute; top:-120px; right:-80px; width:360px; height:360px; background: radial-gradient(circle, rgba(224,30,38,.25), transparent 65%); filter: blur(35px); pointer-events: none; }
/* Interfaz de Chat con Pedro Pilas */
.pedro-chat-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

.pedro-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 90px;
}

.pedro-img-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: pedroIdle 4.5s ease-in-out infinite;
}

.pedro-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: -6px;
  box-shadow: 0 4px 10px rgba(224, 30, 38, 0.3);
  letter-spacing: 0.02em;
  z-index: 3;
  white-space: nowrap;
}

.pedro-speech-bubble {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 24px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pedro-speech-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #111317; /* Empareja con el color de fondo */
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#pedro-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

#pedro-text strong {
  color: #FF2E3B;
  font-weight: 700;
}

/* Animaciones del avatar */
@keyframes pedroIdle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
}



/* Responsive */
@media (max-width: 600px) {
  .pedro-chat-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .pedro-speech-bubble::before {
    display: none;
  }
}

.finder-form { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.field label { display: block; font-size: .74rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 9px; }
.field select {
  width: 100%; padding: 15px 42px 15px 16px;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.16); border-radius: 11px;
  font-size: .96rem; font-weight: 500; font-family: inherit;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color var(--t), background var(--t);
}
.field select:focus { outline: none; border-color: var(--brand); background-color: rgba(255,255,255,.1); }
.field select option { background: var(--ink-3); color: #fff; }
.field select:disabled { opacity: .45; cursor: not-allowed; }
.btn-find {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--brand); color: #fff; border: none;
  padding: 15px 28px; border-radius: 11px; font-weight: 650; font-size: 1rem;
  transition: background var(--t), transform var(--t); white-space: nowrap;
}
.btn-find:hover { background: var(--brand-ink); transform: translateY(-2px); }
.btn-find .icon { stroke: #fff; }

.finder-alert {
  position: relative; z-index: 1; display: none;
  margin-top: 18px; padding: 13px 17px; border-radius: 11px;
  background: rgba(245,166,35,.14); border: 1px solid rgba(245,166,35,.35);
  color: #FCD9A0; font-size: .9rem;
}

.finder-result {
  position: relative; z-index: 1; display: none;
  margin-top: 22px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 26px;
}
.finder-result.visible { display: block; animation: pop .4s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fr-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; }
.fr-label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.fr-vehiculo { font-family: 'Sora',sans-serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.fr-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--brand); color: #fff; font-weight: 650; font-size: .9rem; padding: 6px 14px; border-radius: 50px; }
.fr-modelo { color: rgba(255,255,255,.7); font-size: .9rem; margin-left: 8px; }
.fr-specs { display: flex; gap: 12px; }
.fr-spec { text-align: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 18px; min-width: 86px; }
.fr-spec b { display: block; font-family: 'Sora',sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; }
.fr-spec span { font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 4px; display: block; }
.fr-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; background: var(--wa); color: #fff; padding: 13px 24px; border-radius: 11px; font-weight: 650; transition: background var(--t), transform var(--t); }
.fr-cta:hover { background: var(--wa-ink); transform: translateY(-2px); }
.fr-cta .icon { fill: #fff; stroke: none; }

/* ========================================================
   CATÁLOGO
   ======================================================== */
.catalogo { background: var(--paper-2); padding: 110px 0; }
.tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 1px solid var(--line-2); background: #fff;
  font-weight: 600; font-size: .9rem; color: var(--text-2);
  transition: all var(--t);
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.tab-btn:hover { border-color: var(--ink); color: var(--ink); }
.tab-btn.activo { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(14,15,19,0.15); }

.grid-cat { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 30px; }

.card {
  background: #fff; border: 1px solid rgba(14, 15, 19, 0.06); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(14, 15, 19, 0.12);
  box-shadow: 0 20px 40px rgba(14,15,19,0.06);
}

.card-media {
  position: relative; height: 210px;
  background: radial-gradient(130% 130% at 50% 20%, #ffffff 0%, #f4f6fa 100%);
  display: grid; place-items: center; padding: 22px;
  border-bottom: 1px solid rgba(14, 15, 19, 0.05);
}
.card-media img { max-height: 165px; width: auto; object-fit: contain; mix-blend-mode: multiply; transition: transform var(--t); filter: drop-shadow(0 6px 12px rgba(0,0,0,0.05)); }
.card:hover .card-media img { transform: scale(1.04) rotate(-1deg); }
.card-media svg.card-bat { width: 100px; height: auto; transition: transform var(--t); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12)); }
.card:hover .card-media svg.card-bat { transform: scale(1.05) rotate(1deg); }

.card-flag { 
  position: absolute; top: 16px; left: 16px; z-index: 2; 
  font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; 
  padding: 5px 12px; border-radius: 50px; background: #FF2E3B; color: #fff;
  box-shadow: 0 4px 10px rgba(255, 46, 59, 0.25);
}
.card-flag.amber { background: var(--amber); color: var(--ink); box-shadow: 0 4px 10px rgba(245, 166, 35, 0.25); }

.card-brand-tag { 
  position: absolute; top: 16px; right: 16px; z-index: 2; 
  font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; 
  padding: 5px 12px; border-radius: 6px; 
}
.card-brand-tag.gonher { background: var(--brand-soft); color: var(--brand-ink); }
.card-brand-tag.lth { background: #E7EEFB; color: #1A4F9E; }
.card-brand-tag.maxx { background: #FFF3D6; color: #8A6200; }
.card-brand-tag.semi { background: #E4F3EA; color: #1A6B3C; }

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-modelo { font-family: 'Sora',sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--ink); line-height: 1.1; margin-bottom: 18px; }

/* Specs table rediseñada: minimalista, limpia, sin grillas pesadas */
.specs { 
  display: grid; grid-template-columns: repeat(4, 1fr); 
  border-top: 1px dashed rgba(14, 15, 19, 0.08);
  border-bottom: 1px dashed rgba(14, 15, 19, 0.08);
  padding: 14px 0; margin-bottom: 18px; gap: 8px;
}
.spec { background: transparent; padding: 0; text-align: left; position: relative; }
.spec:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(14, 15, 19, 0.08);
}
.spec b { display: block; font-family: 'Sora',sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.spec span { font-size: .66rem; letter-spacing: .02em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; display: block; }

.card-warranty { display: flex; align-items: center; gap: 6px; font-size: .83rem; font-weight: 600; color: #21242B; margin-bottom: 12px; }
.card-warranty .icon { width: 16px; height: 16px; stroke: #1A6B3C; stroke-width: 2.2; }
.card-fits { font-size: .82rem; color: var(--text-2); line-height: 1.45; flex: 1; }
.card-foot { padding: 0 24px 24px; }

.promos { background: var(--paper-2); }
.coupons { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 64px; }
.coupon {
  position: relative; display: flex; overflow: hidden;
  border-radius: var(--r-lg); background: #fff; border: 1px solid rgba(14, 15, 19, 0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.coupon:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(14,15,19,0.05); border-color: rgba(14, 15, 19, 0.12); }
.coupon-amount {
  flex-shrink: 0; width: 168px; display: grid; place-content: center; text-align: center;
  color: #fff; padding: 28px 18px; position: relative;
}
.coupon-amount.gonher { background: linear-gradient(160deg, #E01E26, #B0151C); }
.coupon-amount.lth { background: linear-gradient(160deg, #1A4F9E, #0D2C59); }
.coupon-amount::after { /* perforación */
  content: ''; position: absolute; right: -9px; top: 0; bottom: 0; width: 18px;
  background-image: radial-gradient(circle at 9px 9px, var(--paper-2) 6.5px, transparent 7.5px);
  background-size: 18px 22px; background-repeat: repeat-y;
}
.coupon-amount .big { font-family: 'Sora',sans-serif; font-size: 3.1rem; font-weight: 800; line-height: 1; }
.coupon-amount .big sup { font-size: 1.3rem; vertical-align: top; top: .3em; position: relative; }
.coupon-amount .menos { font-size: .84rem; font-weight: 700; opacity: .9; letter-spacing: .06em; text-transform: uppercase; }
.coupon-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.coupon-vig { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 600; color: var(--brand); margin-bottom: 10px; }
.coupon-vig .icon { width: 15px; height: 15px; stroke: var(--brand); stroke-width: 2.2; }
.coupon-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.coupon-body p { font-size: .88rem; color: var(--text-2); margin-bottom: 22px; flex: 1; line-height: 1.5; }

.saldos-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.saldos-head h3 { font-size: 1.65rem; font-weight: 800; font-family: 'Sora', sans-serif; }
.saldos-head p { color: var(--text-2); font-size: .94rem; margin-top: 4px; }
.grid-saldos { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.saldo {
  background: #fff; border: 1px solid rgba(14, 15, 19, 0.06); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.saldo:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(14,15,19,0.05); border-color: rgba(14, 15, 19, 0.12); }
.saldo-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(14, 15, 19, 0.05); }
.saldo-pill { font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; background: var(--paper-3); color: var(--text-2); }
.saldo-pill.hot { background: var(--brand-soft); color: var(--brand-ink); }
.saldo-brand { font-size: .82rem; font-weight: 600; color: var(--text-3); }
.saldo-body { padding: 22px; }
.saldo-body h4 { font-size: 1.2rem; font-weight: 750; margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.price { font-family: 'Sora',sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--ink); }
.price-old { font-size: .92rem; color: var(--text-3); text-decoration: line-through; }
.price-save { font-size: .7rem; font-weight: 700; color: #1A6B3C; background: #E4F3EA; padding: 3px 8px; border-radius: 5px; }
.saldo-body p { font-size: .84rem; color: var(--text-2); margin-bottom: 18px; line-height: 1.5; }

/* ========================================================
   SERVICIOS (Manual Swipe / Scroll)
   ======================================================== */
.servicios { background: var(--paper); padding: 110px 0; }
.grid-serv {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.grid-serv::-webkit-scrollbar {
  display: none;
}
.serv {
  width: 290px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #fff; border: 1px solid rgba(14, 15, 19, 0.06); border-radius: var(--r-lg);
  padding: 34px 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.serv:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(14,15,19,0.05); border-color: rgba(14, 15, 19, 0.12); }
.serv-ic { width: 52px; height: 52px; border-radius: 13px; background: var(--paper-3); display: grid; place-items: center; margin-bottom: 22px; transition: background var(--t); }
.serv-ic svg { width: 25px; height: 25px; stroke: var(--ink); stroke-width: 2.2; transition: stroke var(--t); }
.serv:hover .serv-ic { background: var(--brand); box-shadow: 0 4px 12px rgba(224, 30, 38, 0.25); }
.serv:hover .serv-ic svg { stroke: #fff; }
.serv h3 { font-size: 1.15rem; font-weight: 750; font-family: 'Sora', sans-serif; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.serv-tag { font-size: .64rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; background: #E4F3EA; color: #1A6B3C; }
.serv p { font-size: .88rem; color: var(--text-2); line-height: 1.5; white-space: normal; }

/* ========================================================
   GARANTÍA
   ======================================================== */
.warranty-band { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.warranty-band::before { content:''; position:absolute; left:-100px; bottom:-120px; width:420px; height:420px; background: radial-gradient(circle, rgba(224,30,38,.3), transparent 65%); filter: blur(20px); }
.warranty-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.warranty-text .kicker { color: #FF6B71; }
.warranty-text .kicker::before { background: #FF6B71; }
.warranty-text h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; margin: 16px 0 16px; }
.warranty-text > p { color: rgba(255,255,255,.72); font-size: 1.04rem; margin-bottom: 32px; max-width: 480px; }
.warranty-nums { display: flex; gap: 0; }
.wnum { padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(255,255,255,.14); }
.wnum:last-child { border: 0; margin: 0; padding: 0; }
.wnum b { display: block; font-family: 'Sora',sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--brand); line-height: 1; }
.wnum span { font-size: .82rem; color: rgba(255,255,255,.62); margin-top: 8px; display: block; }
.warranty-feats {
  display: flex;
  gap: 0 !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.warranty-feats::-webkit-scrollbar {
  display: none;
}
.wfeat {
  width: 100% !important;
  min-height: 400px;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-sizing: border-box;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg);
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  transition: background var(--t);
}
.wfeat:hover {
  background: rgba(255,255,255,.07);
}
.wfeat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 15, 19, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.wfeat-badge img {
  height: 18px;
  width: auto;
  object-fit: contain;
}
.wfeat-badge span {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wfeat-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wfeat-body {
  padding: 20px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wfeat-body b {
  display: block;
  font-size: 1.15rem !important;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}
.wfeat-body span {
  display: block;
  font-size: 0.84rem !important;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* Instagram Carousel Styles */
.ig-carousel-wrapper {
  position: relative;
  width: 100%;
}
.ig-carousel-wrapper .carousel-arrow {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.ig-carousel-wrapper .carousel-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.ig-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.ig-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}
.ig-dots .dot.activo {
  background: #fff;
  transform: scale(1.3);
}

/* Services Carousel wrapper & arrows */
.services-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(14, 15, 19, 0.08);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  z-index: 10;
  transition: all var(--t);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
}
.carousel-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 16px rgba(224, 30, 38, 0.28);
}
.carousel-arrow.prev {
  left: -22px;
}
.carousel-arrow.next {
  right: -22px;
}
@media (max-width: 560px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow.prev { left: -10px; }
  .carousel-arrow.next { right: -10px; }
}

/* ========================================================
   RESEÑAS
   ======================================================== */
.resenas { background: var(--paper-2); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; fill: var(--amber); stroke: none; }
.reviews-summary b { font-family: 'Sora',sans-serif; font-weight: 700; color: var(--ink); }
.reviews-summary span { color: var(--text-2); font-size: .94rem; }
.grid-rev {
  display: flex;
  gap: 24px;
  animation: marquee-rev 50s linear infinite;
  width: max-content;
}
.grid-rev:hover {
  animation-play-state: paused;
}
.review {
  width: 320px;
  flex-shrink: 0;
  background: #fff; border: 1px solid rgba(14, 15, 19, 0.06); border-radius: var(--r-lg); padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: transform var(--t), box-shadow var(--t);
}
.review:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(14,15,19,0.05); }
.review .stars { margin-bottom: 14px; }
.review .stars svg { width: 16px; height: 16px; }
.review p { font-size: .96rem; color: var(--text); line-height: 1.65; margin-bottom: 22px; white-space: normal; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: 'Sora',sans-serif; font-weight: 700; flex-shrink: 0; }
.review-author b { display: block; font-size: .92rem; color: var(--ink); }
.review-author span { font-size: .8rem; color: var(--text-3); }

/* Animation Keyframes for Marquees */
@keyframes marquee-rev {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ========================================================
   UBICACIÓN
   ======================================================== */
.ubicacion { background: var(--paper); }
.loc-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: stretch; }
.loc-info h3 { font-size: 1.5rem; font-weight: 800; font-family: 'Sora', sans-serif; margin-bottom: 28px; }
.loc-item { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(14, 15, 19, 0.06); }
.loc-item:last-of-type { border: 0; }
.loc-item .ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(224,30,38,0.06); display: grid; place-items: center; flex-shrink: 0; }
.loc-item .ic svg { width: 21px; height: 21px; stroke: var(--brand); stroke-width: 2.2; }
.loc-item .lbl { font-size: .74rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.loc-item .val { font-size: .98rem; color: var(--text); margin-top: 3px; }
.loc-item .val a { color: var(--brand); font-weight: 600; }
.loc-item .val small { display: block; font-size: .8rem; color: var(--text-3); margin-top: 2px; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.03); border: 1px solid rgba(14,15,19,0.06); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.2); }

/* ========================================================
   FAQ
   ======================================================== */
.faq { background: var(--paper-2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid rgba(14, 15, 19, 0.06); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.abierto { border-color: rgba(14, 15, 19, 0.12); box-shadow: 0 16px 36px rgba(14,15,19,0.04); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 21px 24px; background: none; border: 0; text-align: left; font-family: 'Sora',sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); transition: color var(--t); }
.faq-q:hover { color: var(--brand); }
.faq-ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--paper-3); display: grid; place-items: center; transition: all var(--t); }
.faq-ic svg { width: 15px; height: 15px; stroke: var(--ink); stroke-width: 2.2; transition: transform var(--t); }
.faq-item.abierto .faq-ic { background: var(--brand); }
.faq-item.abierto .faq-ic svg { stroke: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); padding: 0 24px; }
.faq-a p { font-size: .94rem; color: var(--text-2); line-height: 1.7; padding-bottom: 0; }
.faq-item.abierto .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ========================================================
   CTA FINAL
   ======================================================== */
.cta { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before { content:''; position:absolute; inset:0; background: radial-gradient(70% 120% at 50% 0%, rgba(224,30,38,.22), transparent 60%); }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.cta p { color: rgba(255,255,255,.72); font-size: 1.08rem; margin: 16px 0 34px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========================================================
   FOOTER
   ======================================================== */
.footer { background: #0A0B0E; color: rgba(255,255,255,.62); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand-text b { color: #fff; }
.footer-desc { font-size: .92rem; line-height: 1.7; margin: 20px 0 22px; max-width: 340px; }
.socials { display: flex; gap: 10px; }
.social { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); transition: all var(--t); }
.social svg { width: 19px; height: 19px; fill: #fff; }
.social.wa:hover { background: var(--wa); border-color: var(--wa); }
.social.ig:hover { background: linear-gradient(135deg,#F09433,#DC2743,#BC1888); border-color: transparent; }
.footer-col h4 { color: #fff; font-size: .96rem; font-weight: 600; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-links span { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ========================================================
   WHATSAPP FLOTANTE
   ======================================================== */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 990; display: flex; align-items: center; gap: 12px; }
.wa-float .tip { background: var(--ink); color: #fff; padding: 9px 15px; border-radius: 10px; font-size: .85rem; font-weight: 600; white-space: nowrap; box-shadow: var(--sh); opacity: 0; transform: translateX(12px); transition: all var(--t); pointer-events: none; }
.wa-float:hover .tip { opacity: 1; transform: translateX(0); }
.wa-fab { width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform var(--t); position: relative; }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::after { content:''; position:absolute; inset:0; border-radius:50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: ring 2.4s infinite; }
@keyframes ring { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.45)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ========================================================
   ANIMACIÓN DE ENTRADA
   ======================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1000px) {
  .hero {
    background: linear-gradient(180deg, rgba(14, 15, 19, 0.88) 0%, rgba(14, 15, 19, 0.95) 100%), url('assets/img/hero-bg.png') no-repeat center center;
    background-size: cover;
    text-align: center;
  }
  .hero-inner { align-items: center; text-align: center; justify-items: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-mini-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; width: 100%; }
  .hero-features-grid { margin: 0 auto 36px; }
  .hero-visual { display: flex; justify-content: center; width: 100%; }
  .battery-hero-svg { max-width: 260px; }
  .battery-stage::before { width: 280px; height: 280px; }
  .warranty-inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-inner { grid-template-columns: 1fr; }
  .coupons { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav-links.abierto {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: fixed; top: 74px; left: 0; right: 0;
    background: rgba(14, 16, 22, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }
  .nav-links.abierto > a { padding: 13px 14px; color: rgba(255, 255, 255, 0.85); }
  .nav-links.abierto > a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
  .nav-cta { margin: 6px 0 0; justify-content: center; }
  .finder { padding: 36px 26px; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .btn-find { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hero-features-grid {
    gap: 8px;
    justify-content: flex-start;
  }
  .feat-card {
    flex-direction: row;
    padding: 4px 8px;
    gap: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .feat-icon-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }
  .feat-icon-box svg {
    width: 10px;
    height: 10px;
  }
  .feat-content h4 {
    font-size: 0.65rem;
    white-space: nowrap;
  }
  .hero-stats {
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .hero-stat {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 80px !important;
    text-align: center !important;
  }
}
@media (max-width: 560px) {
  .seccion { padding: 48px 0 !important; }
  .contenedor { padding: 0 14px !important; }
  
  /* Global Buttons and Typography */
  .btn {
    padding: 12px 20px !important;
    font-size: 0.94rem !important;
    border-radius: 8px !important;
  }
  .btn-lg {
    padding: 14px 24px !important;
    font-size: 0.98rem !important;
  }
  .cab {
    margin-bottom: 28px !important;
  }
  .cab h2 {
    font-size: 1.45rem !important;
  }
  .cab p {
    font-size: 0.88rem !important;
    margin-top: 8px !important;
  }

  /* Hero Section - Full Height & High Readability */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding: 100px 0 100px !important;
    box-sizing: border-box;
  }
  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25;
  }
  .hero-sub {
    font-size: 0.98rem !important;
    margin: 16px 0 24px !important;
    line-height: 1.5;
  }
  
  /* Hide Clutter Elements on Mobile Hero */
  .hero-features-grid, .hero-stats {
    display: none !important;
  }

  .trust-label {
    display: none !important;
  }
  .trust {
    padding: 12px 0 !important;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 0px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-mini-features { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; }
  .mini-feat { justify-content: center; }

  /* Finder Section */
  .finder {
    padding: 24px 16px !important;
    border-radius: 14px !important;
  }
  .finder-form {
    grid-template-columns: 1fr;
    gap: 12px !important;
  }
  .field {
    margin-bottom: 2px !important;
  }
  .field label {
    font-size: 0.68rem !important;
    margin-bottom: 6px !important;
  }
  .field select, .field input {
    padding: 11px 14px !important;
    font-size: 0.88rem !important;
    border-radius: 8px !important;
  }
  .btn-find {
    padding: 12px 20px !important;
    font-size: 0.92rem !important;
    border-radius: 8px !important;
  }
  .finder-head {
    flex-direction: column;
    gap: 14px;
  }
  
  /* Finder Results */
  .fr-vehiculo {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  .fr-tag {
    font-size: 0.8rem !important;
    padding: 4px 10px !important;
  }
  .fr-modelo {
    font-size: 0.8rem !important;
  }
  .fr-specs {
    width: 100%;
    margin-bottom: 16px !important;
    gap: 8px !important;
  }
  .fr-spec b {
    font-size: 1.05rem !important;
  }
  .fr-spec span {
    font-size: 0.65rem !important;
  }

  /* Catalog Cards */
  .grid-cat, .grid-saldos {
    grid-template-columns: 1fr;
    gap: 20px !important;
  }
  .card-media {
    height: 140px !important;
  }
  .card-body {
    padding: 16px 14px !important;
  }
  .card-modelo {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
  }
  .specs {
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .spec b {
    font-size: 0.85rem !important;
  }
  .spec span {
    font-size: 0.62rem !important;
  }
  .card-warranty {
    font-size: 0.78rem !important;
    margin-bottom: 8px !important;
  }
  .card-fits {
    font-size: 0.76rem !important;
  }

  /* Coupons / Promos */
  .coupon {
    flex-direction: column;
  }
  .coupon-amount {
    width: 100%;
    padding: 20px !important;
  }
  .coupon-amount::after {
    display: none;
  }
  .coupon-amount .big {
    font-size: 2.1rem !important;
  }
  .coupon-amount .big sup {
    font-size: 1rem !important;
  }
  .coupon-amount .menos {
    font-size: 0.78rem !important;
  }
  .coupon-body {
    padding: 20px 16px !important;
  }
  .coupon-body h3 {
    font-size: 1.15rem !important;
  }
  .coupon-body p {
    font-size: 0.82rem !important;
    margin-bottom: 14px !important;
  }

  /* Used / Saldos Section */
  .saldos-head h3 {
    font-size: 1.35rem !important;
  }
  .saldos-head p {
    font-size: 0.85rem !important;
  }
  .saldo-card {
    padding: 16px 14px !important;
  }
  .saldo-body h4 {
    font-size: 1.05rem !important;
  }
  .price {
    font-size: 1.35rem !important;
  }
  .price-old {
    font-size: 0.85rem !important;
  }

  /* Warranty & Guarantee Timeline */
  .warranty-nums {
    flex-wrap: wrap;
    gap: 24px;
  }
  .wnum {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .wnum b {
    font-size: 2.4rem !important;
  }
  .wnum span {
    font-size: 0.78rem !important;
  }

  /* FAQ */
  .faq-item {
    padding: 16px 14px !important;
  }
  .faq-item h3 {
    font-size: 0.95rem !important;
  }
  .faq-content p {
    font-size: 0.82rem !important;
  }

  /* Footer */
  .footer-brand b {
    font-size: 1.25rem !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-grid h4 {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
  }
  .footer-grid p, .footer-grid a {
    font-size: 0.82rem !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .wa-float .tip {
    display: none;
  }

  /* Compact & Centered Warranty IG Carousel on Mobile */
  .ig-carousel-wrapper {
    max-width: 320px !important;
    margin: 0 auto 24px !important;
  }
  .ig-carousel-wrapper .marquee-wrapper {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: var(--r-lg) !important;
  }
  .ig-carousel-wrapper .carousel-arrow.prev {
    left: 8px !important;
  }
  .ig-carousel-wrapper .carousel-arrow.next {
    right: 8px !important;
  }
  .wfeat {
    aspect-ratio: auto !important;
    min-height: 350px !important;
  }
  .wfeat-img {
    height: 140px !important;
  }
  .wfeat-body {
    padding: 14px 16px !important;
    gap: 3px !important;
  }
  .wfeat-body b {
    font-size: 0.92rem !important;
  }
  .wfeat-body span {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
  }
  .wfeat-badge {
    top: 8px !important;
    right: 8px !important;
    padding: 3px 8px !important;
    gap: 4px !important;
  }
  .wfeat-badge img {
    height: 12px !important;
  }
  .wfeat-badge span {
    font-size: 0.58rem !important;
  }
}
