/* ================================================
   SANZA COMPANY — Estilos principales
   Colores: Azul rey #1C6DC1, Blanco #FFFFFF
   Fondo: #050B15 (dark navy)
   ================================================ */

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

:root {
  --blue: #1C6DC1;
  --blue-light: #2E8EF0;
  --blue-dark: #0F4A8A;
  --blue-glow: rgba(28, 109, 193, 0.35);
  --white: #FFFFFF;
  --bg: #050B15;
  --bg-2: #080F1E;
  --bg-3: #0C1528;
  --text: #E8EDF5;
  --text-muted: #7A8BA5;
  --border: rgba(28, 109, 193, 0.2);
  --radius: 16px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 11, 21, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav__logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--white);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
  letter-spacing: .02em;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav__cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 30px var(--blue-glow);
}
.btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(28,109,193,.5);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0d1f3c, #050b15 70%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,11,21,.55) 0%,
    rgba(5,11,21,.4) 50%,
    rgba(5,11,21,.85) 100%
  );
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,109,193,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,109,193,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 6s ease-in-out infinite;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  background: rgba(28,109,193,.15);
  top: 10%; left: 20%;
  animation-delay: 0s;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(46,142,240,.1);
  bottom: 10%; right: 15%;
  animation-delay: -3s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero__logo-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.hero__logo-img {
  height: 380px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(28,109,193,.5));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--blue-light);
  opacity: .6;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--blue-light) 0%, #5BB8FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   STATS
   =========================== */
.stats {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat { padding: 24px 16px; }
.stat__num {
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat__plus { font-size: 2rem; font-weight: 700; color: var(--blue-light); }
.stat__label { font-size: .875rem; color: var(--text-muted); margin-top: 8px; letter-spacing: .05em; }

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--blue-light), #5BB8FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   MARCAS
   =========================== */
.marcas {
  padding: 120px 0;
  background: #05080f;
  position: relative;
  overflow: hidden;
}
.marcas__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.marcas__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.marcas__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #1c6dc1, transparent 65%);
  top: -200px; right: -150px;
}
.marcas__blob--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1c6dc1, transparent 65%);
  bottom: -150px; left: -100px;
}

.marcas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.marca-card {
  perspective: 1000px;
}

.marca-card__inner {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), border-color .3s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.marca-card__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.marca-card:hover .marca-card__inner {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(28,109,193,.25);
}
.marca-card:hover .marca-card__inner::before { opacity: 1; }

.marca-card__img-wrap {
  margin: -36px -28px 20px;
  height: 190px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #0e2a52 50%, #050b15 100%);
  flex-shrink: 0;
  position: relative;
}

.marca-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, #0d1825);
  pointer-events: none;
}

.marca-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.marca-card:hover .marca-card__img {
  transform: scale(1.08);
}

.marca-card__icon {
  width: 64px;
  height: 48px;
  margin-bottom: 4px;
}
.marca-card__icon svg { width: 100%; height: 100%; }

.marca-card__brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .05em;
}
.marca-card__country {
  font-size: .8rem;
  color: var(--blue-light);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.marca-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.marca-card__cta {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: .03em;
  transition: color .2s, gap .2s;
  margin-top: 4px;
}
.marca-card__cta:hover { color: var(--white); }

.marca-card__gallery-btn {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  margin-bottom: 10px;
}
.marca-card__gallery-btn:hover {
  background: rgba(28,109,193,.2);
  border-color: var(--blue);
  color: var(--white);
}

/* ===========================
   MÁS MARCAS CARD
   =========================== */
.marca-card--mas {
  grid-column: 1 / -1;
}

.marca-card__inner--mas {
  background: linear-gradient(135deg, #050f20, #081628);
  border: 1.5px dashed rgba(96,165,250,.4);
  flex-direction: row;
  align-items: center;
  gap: 48px;
  padding: 40px 48px;
  box-shadow: inset 0 0 80px rgba(28,109,193,.07);
}

.marca-card--mas:hover .marca-card__inner--mas {
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(28,109,193,.2), inset 0 0 80px rgba(28,109,193,.12);
}

.mas-marcas__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 120px;
}

.mas-marcas__num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, #1c6dc1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mas-marcas__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-top: 4px;
  text-align: center;
}

.mas-marcas__center {
  flex: 1;
}

.mas-marcas__desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mas-marcas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mas-marcas__tags span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #60a5fa;
  background: rgba(96,165,250,.1);
  border: 1px solid rgba(96,165,250,.2);
  border-radius: 4px;
  padding: 4px 10px;
}

.mas-marcas__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===========================
   CONFIGURADOR SU7 MAX
   =========================== */
.config {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1428 40%, #0a0e1a 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,165,0,.12);
  border-bottom: 1px solid rgba(255,165,0,.12);
}

.config::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,140,0,.07) 0%, rgba(28,109,193,.06) 40%, transparent 70%);
  pointer-events: none;
}

/* Badge PREVENTA */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #b45309, #f59e0b, #b45309);
  background-size: 200% auto;
  animation: shimmer-badge 2.5s linear infinite;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.launch-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.6); }
}
@keyframes shimmer-badge {
  to { background-position: 200% center; }
}

/* Contador de unidades */
.launch-stock {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,140,0,.08);
  border: 1px solid rgba(255,140,0,.30);
  border-radius: 12px;
}
.launch-stock__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.launch-stock__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.launch-stock__main {
  font-size: .88rem;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: .02em;
}
.launch-stock__sub {
  font-size: .76rem;
  color: var(--text-muted);
}

/* Barra de unidades */
.launch-units {
  display: flex;
  gap: 5px;
}
.launch-unit {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,140,0,.18);
}
.launch-unit--taken {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* Nota de reserva */
.launch-note {
  font-size: .74rem;
  color: var(--text-muted);
  text-align: center;
}

/* Contador premium debajo del carro */
.launch-counter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 22px 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,140,0,.22);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.launch-counter__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.launch-counter__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.launch-counter__num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.launch-counter__label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.launch-counter__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.launch-counter__info-title {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

.launch-counter__reserved {
  font-size: .76rem;
  color: var(--text-muted);
}

.launch-counter__units {
  display: flex;
  gap: 5px;
}

.launch-counter__unit {
  flex: 1;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.09);
}

.launch-counter__unit--taken {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.launch-counter__note {
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  margin: 0;
}

/* Separador dentro del panel */
.config__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 4px 0;
}

.config__wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: stretch;
  margin-top: 56px;
}

.config__display { position: relative; }

.config__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #080f20, #0d1f3c);
  transition: background .5s ease;
}

.config__img-wrap img,
.config__img-wrap canvas {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.config__placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: absolute;
  inset: 0;
  color: var(--text-muted);
}

.config__placeholder-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.config__placeholder-sub {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.config__color-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  transition: opacity .3s;
}

.config__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
}

.config__panel-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.config__colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.config__swatch {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  color: var(--text);
  font-family: var(--font);
  text-align: left;
}

.config__swatch:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.config__swatch--active {
  background: rgba(28,109,193,.13);
  border-color: var(--blue);
}

.config__swatch-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
  border: 2px solid rgba(255,255,255,.15);
}

.config__swatch-name {
  font-size: .85rem;
  font-weight: 500;
  flex: 1;
}

.config__swatch-check {
  font-size: .75rem;
  color: #60a5fa;
  opacity: 0;
  transition: opacity .2s;
}

.config__swatch--active .config__swatch-check { opacity: 1; }

.config__specs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.config__spec {
  display: grid;
  grid-template-rows: 1.6rem auto;
  align-items: center;
  justify-items: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 4px;
  border-right: 1px solid var(--border);
}

.config__spec:last-child { border-right: none; }

.config__spec-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  align-self: center;
}

.config__spec-label {
  font-size: .55rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
  word-break: break-word;
  align-self: start;
}

.config__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-top: auto;
}

.blue-accent {
  background: linear-gradient(90deg, #60a5fa, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .config__wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================
   GALERÍA MODAL
   =========================== */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gallery-modal.open {
  opacity: 1;
  pointer-events: all;
}
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,11,21,.92);
  backdrop-filter: blur(8px);
}
.gallery-modal__box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow-y: auto;
  padding: 32px;
  transform: translateY(30px);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.gallery-modal.open .gallery-modal__box {
  transform: translateY(0);
}
.gallery-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.gallery-modal__brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
}
.gallery-modal__subtitle {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.gallery-modal__close {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.gallery-modal__close:hover { background: rgba(255,255,255,.15); }

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.gallery-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-photo:hover img { transform: scale(1.04); }
.gallery-photo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(28,109,193,.15) 0%, rgba(5,11,21,.8) 100%);
  border: 1px dashed rgba(28,109,193,.3);
}
.gallery-photo__placeholder-icon {
  color: rgba(28,109,193,.5);
}
.gallery-photo__placeholder-text {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.gallery-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(5,11,21,.85));
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-modal__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  transition: opacity .2s;
}
.gallery-modal__wa:hover { opacity: .9; }

/* ===========================
   SERVICIOS
   =========================== */
.servicios {
  padding: 120px 0;
  position: relative;
}
.servicios__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
}
.servicios__glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(28,109,193,.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.servicios .container { position: relative; z-index: 1; }

.servicios__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.servicio {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  gap: 32px;
  align-items: center;
  padding: 40px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .3s, box-shadow .3s;
}
.servicio:hover {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(28,109,193,.15);
}

.servicio__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .35;
  line-height: 1;
}
.servicio__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.servicio__content p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.link-arrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: color .2s;
}
.link-arrow:hover { color: var(--white); }

.servicio__icon { display: flex; justify-content: center; }
.servicio__icon svg { width: 80px; height: 80px; }

/* ===========================
   CARGADORES HIGHLIGHT
   =========================== */
.cargadores { padding: 100px 0; }

.cargadores__inner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
  border: 1px solid var(--blue);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cargadores__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(28,109,193,.3), transparent);
  pointer-events: none;
}

.cargadores__badge {
  display: inline-block;
  background: rgba(28,109,193,.25);
  border: 1px solid rgba(28,109,193,.4);
  color: var(--blue-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.cargadores__inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.cargadores__inner h2 span {
  background: linear-gradient(135deg, var(--blue-light), #5BB8FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cargadores__inner > p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.cargadores__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  position: relative;
}
.cargador-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.cargador-feat__icon {
  width: 48px; height: 48px;
  background: rgba(28,109,193,.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.cargador-feat strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.cargador-feat span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
}

.cargadores__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--bg-3) 50%, var(--bg-2) 100%);
  border: 1px solid var(--blue);
  border-radius: 24px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cargadores__split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(28,109,193,.25), transparent);
  pointer-events: none;
}
.cargadores__info { position: relative; }
.cargadores__info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.cargadores__info h2 span {
  background: linear-gradient(135deg, var(--blue-light), #5BB8FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cargadores__info > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cargadores__form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.cargadores__form-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cargadores__form-box > p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .cargadores__split {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 36px;
  }
}

/* ===========================
   POR QUÉ
   =========================== */
.porque { padding: 120px 0; }

.porque__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.porque-card {
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.porque-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #5BB8FF);
  opacity: 0;
  transition: opacity .3s;
}
.porque-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 20px 48px rgba(28,109,193,.2);
}
.porque-card:hover::before { opacity: 1; }
.porque-card__icon {
  width: 56px; height: 56px;
  background: rgba(28,109,193,.15);
  border: 1px solid rgba(28,109,193,.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #5BB8FF;
  transition: background .3s;
}
.porque-card:hover .porque-card__icon { background: rgba(28,109,193,.3); }
.porque-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.porque-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   PROCESO DE COMPRA
   =========================== */
.proceso {
  padding: 120px 0;
  background: #020d0a;
  position: relative;
  overflow: hidden;
}
.proceso__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.proceso__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.proceso__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00c37a, transparent);
  bottom: -150px; right: -100px;
}
.proceso__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0ea5e9, transparent);
  top: -100px; left: -80px;
}
.proceso__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.proceso__step {
  background: rgba(255,255,255,.04);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  text-align: center;
  border-top: 3px solid transparent;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.proceso__step:nth-child(1) { border-top-color: #1c6dc1; }
.proceso__step:nth-child(2) { border-top-color: #0ea5e9; }
.proceso__step:nth-child(3) { border-top-color: #5BB8FF; }
.proceso__step::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 20px;
}
.proceso__step:nth-child(1)::before { background: radial-gradient(ellipse at 50% 0%, rgba(28,109,193,.12), transparent 60%); }
.proceso__step:nth-child(2)::before { background: radial-gradient(ellipse at 50% 0%, rgba(14,165,233,.12), transparent 60%); }
.proceso__step:nth-child(3)::before { background: radial-gradient(ellipse at 50% 0%, rgba(91,184,255,.12), transparent 60%); }
.proceso__step:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.proceso__step:hover::before { opacity: 1; }
.proceso__num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: -8px;
  position: relative;
}
.proceso__step:nth-child(1) .proceso__num { color: rgba(28,109,193,.2); }
.proceso__step:nth-child(2) .proceso__num { color: rgba(14,165,233,.2); }
.proceso__step:nth-child(3) .proceso__num { color: rgba(91,184,255,.2); }
.proceso__connector { display: none; }
.proceso__icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: transform .3s;
}
.proceso__step:nth-child(1) .proceso__icon { background: rgba(28,109,193,.2); border: 1px solid rgba(28,109,193,.4); color: #5BB8FF; }
.proceso__step:nth-child(2) .proceso__icon { background: rgba(14,165,233,.2); border: 1px solid rgba(14,165,233,.4); color: #38bdf8; }
.proceso__step:nth-child(3) .proceso__icon { background: rgba(91,184,255,.2); border: 1px solid rgba(91,184,255,.4); color: #93c5fd; }
.proceso__step:hover .proceso__icon { transform: scale(1.08); }
.proceso__step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.proceso__step p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.proceso__trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(28,109,193,.08);
  border: 1px solid rgba(28,109,193,.2);
  border-radius: 14px;
  padding: 20px 28px;
  margin: 32px auto 0;
  max-width: 680px;
  color: #5BB8FF;
}
.proceso__trust svg { flex-shrink: 0; margin-top: 2px; }
.proceso__trust p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
.proceso__cta {
  text-align: center;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .proceso__steps { grid-template-columns: 1fr; }
  .proceso__step { padding: 36px 28px; }
}

/* ===========================
   CALCULADORA DE AHORRO
   =========================== */
.calc {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #020d0a;
}
.calc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.calc__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.calc__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00c37a, transparent);
  top: -150px; left: -100px;
}
.calc__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0ea5e9, transparent);
  bottom: -100px; right: -80px;
}
.section-eyebrow--green { color: #00c37a; }
.gold-accent {
  background: linear-gradient(135deg, #f59e0b, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.green-accent {
  background: linear-gradient(135deg, #00c37a, #00e5a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calc__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(0,195,122,.2);
  border-radius: 24px;
  padding: 56px 48px;
  margin-top: 56px;
}
.calc__field { margin-bottom: 32px; }
.calc__field:last-child { margin-bottom: 0; }
.calc__field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.calc__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.calc__slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  outline: none;
  cursor: pointer;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #00c37a;
  box-shadow: 0 0 12px rgba(0,195,122,.6);
  cursor: pointer;
  transition: transform .2s;
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc__slider-val {
  font-size: .9rem;
  font-weight: 700;
  color: #00c37a;
  min-width: 90px;
  text-align: right;
}
.calc__results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc__result-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
}
.calc__result-card--gas {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
}
.calc__result-card--ev {
  background: rgba(0,195,122,.08);
  border-color: rgba(0,195,122,.2);
}
.calc__result-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc__result-card--gas .calc__result-icon { background: rgba(239,68,68,.15); color: #f87171; }
.calc__result-card--ev  .calc__result-icon { background: rgba(0,195,122,.15); color: #00c37a; }
.calc__result-label {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.calc__result-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.calc__vs {
  text-align: center;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: rgba(255,255,255,.3);
}
.calc__saving {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(0,195,122,.15), rgba(0,229,160,.08));
  border: 1px solid rgba(0,195,122,.35);
  border-radius: 14px;
  gap: 6px;
}
.calc__saving-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #00c37a;
}
.calc__saving-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.calc__saving-year {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.btn--green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00c37a, #00e5a0);
  color: #021a10;
  font-weight: 800;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,195,122,.4);
}
@media (max-width: 900px) {
  .calc__inner { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ===========================
   CONTACTO
   =========================== */
.contacto { padding: 120px 0; background: var(--bg-2); }

.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contacto__info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 12px;
}
.contacto__sub {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contacto__details { display: flex; flex-direction: column; gap: 20px; }
.contacto__item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s;
}
.contacto__item:hover { transform: translateX(4px); }
.contacto__item-icon {
  width: 48px; height: 48px;
  background: rgba(28,109,193,.15);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.contacto__item-label {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.contacto__item-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contacto__cta-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contacto__cta-inner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.contacto__cta-inner > p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contacto__marcas-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.contacto__marcas-quick a {
  padding: 9px 10px;
  background: rgba(28,109,193,.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
  transition: background .2s, color .2s, border-color .2s;
}
.contacto__marcas-quick a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ===========================
   FORMULARIO COTIZACIÓN
   =========================== */
.cotiz-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1rem;
}
.cotiz-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.cotiz-form__input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--white);
  font-size: .95rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
  appearance: none;
}
.cotiz-form__input::placeholder { color: rgba(255,255,255,.4); }
.cotiz-form__input:focus { border-color: var(--blue); }
.cotiz-form__input option { background: #0d1b2a; color: var(--white); }
.cotiz-form__textarea {
  min-height: 80px;
  resize: vertical;
}
@media (max-width: 480px) {
  .cotiz-form__row { grid-template-columns: 1fr; }
}

/* ===========================
   SELLO IMPORTADOR
   =========================== */
.sello {
  background: #020d1a;
  border-top: 1px solid rgba(96,165,250,.15);
  border-bottom: 1px solid rgba(96,165,250,.15);
  padding: 56px 0;
}

.sello__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.sello__badge {
  flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(96,165,250,.35));
}

.sello__text {
  flex: 1;
  min-width: 220px;
}

.sello__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 6px;
}

.sello__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sello__sub {
  font-size: .875rem;
  color: var(--text-muted);
}

.sello__trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sello__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: #a0c4f1;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer__brand { max-width: 280px; }
.footer__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px 10px;
  margin-bottom: 16px;
}
.footer__logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 16px;
}
.footer__brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

.footer__links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__links a:hover { color: var(--blue-light); }

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s;
}
.footer__social a:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ===========================
   WHATSAPP FLOTANTE
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .25s, box-shadow .25s;
  animation: wa-appear .5s .5s both;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
}
@keyframes wa-appear {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94) var(--delay, 0s),
              transform .7s cubic-bezier(.25,.46,.45,.94) var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .marcas__grid { grid-template-columns: repeat(2, 1fr); }
  .porque__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(5,11,21,.97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
    gap: 28px;
  }

  .hero__title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .marcas__grid { grid-template-columns: 1fr; }
  .porque__grid { grid-template-columns: 1fr 1fr; }

  .servicio {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    padding: 28px 24px;
  }
  .servicio__icon { display: none; }

  .cargadores__inner { padding: 40px 28px; }
  .cargadores__features { flex-direction: column; align-items: center; gap: 20px; }

  .contacto__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 20px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .porque__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: center; }
}
