:root {
  --naranja: #F47C20;
  --naranja-lite: rgba(244,124,32,0.09);
  --naranja-borde: rgba(244,124,32,0.28);
  --verde: #2E9E3A;
  --verde-lite: rgba(46,158,58,0.08);
  --amarillo: #FFD600;
  --azul: #1565C0;
  --rojo: #E53935;
  --blanco: #FFFFFF;
  --gris-claro: #F5F5F5;
  --texto: #1A1A1A;
  --texto-sub: #6B7280;
  --bg: #F7F4F0;
  --card: #FFFFFF;
  --input-bg: #F9FAFB;
  --borde: #E5E7EB;
  --sombra-card: 0 8px 48px rgba(0,0,0,0.09);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--blanco);
  color: var(--texto);
  overflow-x: hidden;
}

body.page-cotizador { background: var(--bg); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

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

.header-logo { text-decoration: none; display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 28px; }

.header-nav a {
  color: var(--texto);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.15s;
}

.header-nav a:hover { color: var(--naranja); }

.header-nav .btn-cotiza {
  background: var(--naranja);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: background 0.15s;
}

.header-nav .btn-cotiza:hover { background: #e0700f; color: white; }

.header-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--texto);
  line-height: 1;
  padding: 4px;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #F47C20 0%, #FFB300 40%, #2E9E3A 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.logo-hero {
  background: white;
  border-radius: 50%;
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.logo-hero img { width: 120px; height: auto; object-fit: contain; }

.logo-asi {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.6s 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.logo-asi img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hero-badge {
  background: var(--rojo);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  animation: slideDown 0.5s 0.2s both;
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  color: white;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.25);
  margin-bottom: 8px;
  animation: slideUp 0.5s 0.3s both;
}

.hero h1 span {
  color: var(--amarillo);
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: white;
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: slideUp 0.5s 0.4s both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  animation: slideUp 0.5s 0.5s both;
}

.pill {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 999px;
}

.pill.destaca {
  background: var(--amarillo);
  color: var(--texto);
  border-color: var(--amarillo);
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideUp 0.5s 0.6s both;
}

.btn-principal {
  background: var(--amarillo);
  color: var(--texto);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-principal:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-secundario {
  background: white;
  color: var(--naranja);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-secundario:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.hero-location {
  margin-top: 28px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  animation: slideUp 0.5s 0.7s both;
}

/* ─── BANDA SIN ENGANCHE ─── */
.banda {
  background: var(--rojo);
  padding: 18px 0;
  overflow: hidden;
}

.banda-inner {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.banda-item {
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECCIÓN CÓMO FUNCIONA ─── */
.como {
  background: var(--gris-claro);
  padding: 80px 20px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--naranja);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--texto);
  margin-bottom: 16px;
}

.section-title span { color: var(--naranja); }

.section-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 600;
}

.pasos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.paso {
  background: white;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.paso:hover { transform: translateY(-6px); }

.paso-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--naranja), var(--amarillo));
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.paso h3 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--texto);
}

.paso p { color: #666; font-size: 0.9rem; line-height: 1.5; }

/* ─── BENEFICIOS ─── */
.beneficios {
  background: linear-gradient(135deg, #1B5E20 0%, #2E9E3A 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.beneficios .section-title { color: white; }
.beneficios .section-title span { color: var(--amarillo); }

.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.ben-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 36px 20px;
  transition: background 0.2s;
}

.ben-card:hover { background: rgba(255,255,255,0.2); }

.ben-icon { font-size: 2.8rem; margin-bottom: 16px; }

.ben-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--amarillo);
}

.ben-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; }

/* ─── PRODUCTOS ─── */
.productos {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

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

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .prod-grid { grid-template-columns: 1fr; }
}

.prod-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  background: white;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  border-color: var(--naranja);
}

.prod-head {
  padding: 40px 24px 24px;
  position: relative;
}

.prod-card:nth-child(1) .prod-head { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.prod-card:nth-child(2) .prod-head { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.prod-card:nth-child(3) .prod-head { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.prod-card:nth-child(4) .prod-head { background: linear-gradient(135deg, #E0F7FA, #B2EBF2); }

.prod-emoji {
  font-size: 4rem;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.prod-emoji img { height: 64px; width: auto; object-fit: contain; }

.prod-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--rojo);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.prod-body {
  padding: 24px;
  text-align: left;
}

.prod-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--texto);
  margin-bottom: 8px;
}

.prod-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.prod-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--verde);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.prod-cta {
  display: block;
  background: linear-gradient(135deg, var(--naranja), #FF8F00);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  transition: opacity 0.2s, transform 0.15s;
}

.prod-cta:hover { opacity: 0.9; transform: scale(1.02); }

/* Carrusel de productos */
.prod-carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track::before {
  content: '';
  display: block;
  padding-bottom: 75%;
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-img.active {
  opacity: 1;
}

.carousel-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 4px;
}

.carousel-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.2s;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-thumb.active {
  border-color: var(--naranja);
}

/* Botón ficha técnica */
.ficha-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 2px solid var(--naranja);
  color: var(--naranja);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.ficha-btn:hover {
  background: var(--naranja);
  color: white;
}

/* ─── CTA CENTRAL ─── */
.cta-central {
  background: linear-gradient(135deg, var(--naranja) 0%, #FF8F00 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-central::before {
  content: 'SIN ENGANCHE SIN ENGANCHE SIN ENGANCHE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
}

.cta-central h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: white;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-central h2 span { color: var(--amarillo); }

.cta-central p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

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

.btn-wa {
  background: #25D366;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-wa:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.btn-white {
  background: white;
  color: var(--naranja);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 18px 42px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* ─── TESTIMONIO / CONFIANZA ─── */
.confianza {
  background: var(--gris-claro);
  padding: 80px 20px;
  text-align: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.stat {
  flex: 1;
  min-width: 160px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--naranja);
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  color: #555;
  font-size: 0.95rem;
  margin-top: 4px;
}

.requisitos {
  background: white;
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 3px solid var(--naranja);
}

.req-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--naranja);
  margin-bottom: 24px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--verde);
}

.req-item:last-child { border-bottom: none; }

.req-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: #1A1A1A;
  color: white;
  padding: 48px 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo img { height: 52px; width: auto; }

.footer-sub {
  color: var(--amarillo);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-info {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-info a {
  color: var(--amarillo);
  text-decoration: none;
  font-weight: 700;
}

.footer-sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 32px auto;
  max-width: 400px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ─── STICKY WA ─── */
.sticky-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  color: white;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 999;
  animation: pulse 2.5s infinite;
  transition: transform 0.15s;
}

.sticky-wa svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.sticky-wa:hover { transform: scale(1.12); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8); }
}

/* ─── FAQ ─── */
.faq {
  background: var(--gris-claro);
  padding: 80px 20px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.faq-card {
  background: white;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-card[open] {
  border-color: var(--naranja);
  box-shadow: 0 6px 24px rgba(244,124,32,0.14);
}

.faq-pregunta {
  list-style: none;
  padding: 20px;
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--texto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.faq-pregunta::-webkit-details-marker { display: none; }

.faq-pregunta::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--naranja);
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-card[open] .faq-pregunta::after { transform: rotate(45deg); }

.faq-respuesta {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  font-weight: 600;
}

/* ─── COTIZADOR ─── */
.seccion { padding: 80px 20px 100px; }

.inner { max-width: 860px; margin: 0 auto; }

.encabezado { text-align: center; margin-bottom: 48px; }

.tag {
  display: inline-block;
  background: var(--naranja);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.encabezado h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--texto);
  line-height: 1;
  margin-bottom: 12px;
}

.encabezado h2 span { color: var(--naranja); }

.encabezado p {
  color: var(--texto-sub);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border-radius: 24px;
  border: 1.5px solid var(--borde);
  box-shadow: var(--sombra-card);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--naranja), var(--amarillo));
  border-radius: 24px 24px 0 0;
}

.bloque-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--texto-sub);
  margin-bottom: 14px;
}

.prod-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.prod-opt {
  background: var(--input-bg);
  border: 2px solid var(--borde);
  border-radius: 14px;
  padding: 20px 16px;
  cursor: pointer;
  user-select: none;
  transition: all 0.18s;
  position: relative;
}

.prod-opt:hover {
  border-color: var(--naranja);
  background: var(--naranja-lite);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(244,124,32,0.14);
}

.prod-opt.sel {
  border-color: var(--naranja);
  background: var(--naranja-lite);
  box-shadow: 0 5px 16px rgba(244,124,32,0.16);
}

.prod-opt .chk {
  width: 20px; height: 20px;
  border: 2px solid var(--borde);
  border-radius: 6px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: all 0.18s;
  font-size: 0.75rem;
  color: transparent;
  font-weight: 900;
}

.prod-opt.sel .chk {
  background: var(--naranja);
  border-color: var(--naranja);
  color: white;
}

.p-emoji  { font-size: 1.9rem; display: block; margin-bottom: 8px; }
.p-emoji img { height: 1.9rem; width: auto; object-fit: contain; }
.p-nombre { font-weight: 900; font-size: 1rem; color: var(--texto); margin-bottom: 3px; }
.p-sub    { font-size: 0.78rem; color: var(--naranja); font-weight: 700; }

.prod-opt.todo {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.prod-opt.todo .chk { margin-bottom: 0; flex-shrink: 0; }
.prod-opt.todo .p-emoji { font-size: 1.7rem; margin: 0; flex-shrink: 0; }

.sep {
  border: none;
  border-top: 1.5px solid var(--borde);
  margin: 32px 0;
}

.fila {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.campo { display: flex; flex-direction: column; gap: 7px; }

.campo label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texto-sub);
}

.campo input {
  background: var(--input-bg);
  border: 1.5px solid var(--borde);
  border-radius: 12px;
  padding: 13px 15px;
  color: var(--texto);
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}

.campo input::placeholder { color: #C4C9D1; }

.campo input:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.11);
}

.recibo-bloque {
  background: #FFFBF5;
  border: 1.5px solid var(--naranja-borde);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}

.recibo-titulo {
  font-weight: 900;
  font-size: 0.97rem;
  color: var(--texto);
  margin-bottom: 5px;
}

.recibo-desc {
  color: var(--texto-sub);
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
}

.recibo-svg {
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.09);
}

.nota {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--texto-sub);
  margin-top: 8px;
  margin-bottom: 24px;
}

.err {
  color: var(--rojo);
  font-size: 0.83rem;
  font-weight: 700;
  margin-top: 6px;
  display: none;
}

.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #1DA851, #25D366);
  border: none;
  border-radius: 16px;
  padding: 19px 28px;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 8px;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.42);
}

.disclaimer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--texto-sub);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-toggle { display: block; }
  .header-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .header-nav.open { display: flex; }
  .header-nav .btn-cotiza { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-principal, .btn-secundario, .btn-wa, .btn-white {
    width: 100%; max-width: 320px; justify-content: center;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .card { padding: 28px 18px; }
  .seccion { padding: 52px 14px 70px; }
  .fila { grid-template-columns: 1fr; }
  .prod-head { padding: 36px 16px 20px; }
}

@media (min-width: 900px) {
  .carousel-track { height: 180px; }
  .carousel-track::before { display: none; }
}
