/* ============================================================
   CHILLCOM — Landing
   Sistema de marca: amarillo (optimismo) · negro (confianza) · blanco (calma)
   Tipografía redondeada (Nunito / Nunito Sans)
   ============================================================ */
:root {
  --yellow:      #FAC312;
  --yellow-2:    #FFD23F;
  --yellow-dark: #E0A800;
  --yellow-glow: rgba(250,195,18,0.35);
  --black:       #0C0C0E;
  --black-2:     #141416;
  --black-3:     #1E1E22;
  --white:       #FFFFFF;
  --cream:       #FBF7EF;
  --cream-2:     #F4ECDD;
  --gray-light:  #F4F4F1;
  --gray-mid:    #E4E4DF;
  --gray-text:   #8A8A82;
  --ink-soft:    #5A5A55;
  --red-voda:    #E60000;

  --radius-xl:   28px;
  --radius-lg:   22px;
  --radius-md:   15px;
  --radius-sm:   10px;

  --shadow-neo:    4px 4px 0 var(--black);
  --shadow-neo-lg: 6px 6px 0 var(--black);
  --maxw: 1180px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
.font-round { font-family: 'Nunito', system-ui, sans-serif; }

/* ============================================================
   LOGO (hand + stacked wordmark)
   ============================================================ */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { height: 44px; width: auto; display: block; }
.brand-logo-foot { height: 56px; width: auto; display: block; }
.brand-hand { width: 46px; height: auto; flex-shrink: 0; }
.brand-word {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -1px;
}
.brand-word .l1, .brand-word .l2 { display: block; }
.brand-claim {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2px;
  margin-top: 5px;
  line-height: 1;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 54px);
}
nav .brand-word { font-size: 21px; color: var(--black); }
nav .brand-word .com { color: var(--yellow-dark); }
nav .brand-claim { color: rgba(0,0,0,0.42); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .18s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--yellow-dark); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  box-shadow: 0 6px 22px var(--yellow-glow);
  white-space: nowrap;
}
.btn-pill:hover { background: var(--yellow-2); transform: translateY(-2px); box-shadow: 0 10px 30px var(--yellow-glow); }
.btn-pill svg { width: 17px; height: 17px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: 74px;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.97) 0%, rgba(8,8,10,0.84) 24%, rgba(8,8,10,0.4) 44%, rgba(8,8,10,0.05) 62%, rgba(8,8,10,0) 78%),
    url('assets/BANNER.png') 100% 50% / cover no-repeat,
    #08080a;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 54px) clamp(64px, 7vw, 104px);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero::before, .hero::after { content: none; }
.hero-left { position: relative; z-index: 3; max-width: 540px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid rgba(250,195,18,0.45);
  background: rgba(250,195,18,0.09);
  color: var(--yellow);
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 13.5px;
  padding: 8px 18px 8px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge img { width: 20px; }
.badge-emoji { font-size: 16px; line-height: 1; }

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 6vw, 82px);
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
.hero h1 .hl { color: var(--yellow); }

.hero-desc {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.62);
  line-height: 1.62;
  margin-bottom: 16px;
  max-width: 440px;
}
.hero-chill {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}
.hero-chill b { color: var(--yellow); }

.btn-cta-lg {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 18px;
  padding: 18px 38px;
  border-radius: 50px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 36px var(--yellow-glow);
  transition: transform .2s ease, background .2s ease;
  animation: glow-pulse 3.2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 10px 36px rgba(250,195,18,0.34); }
  50%     { box-shadow: 0 10px 54px rgba(250,195,18,0.6); }
}
.btn-cta-lg:hover { background: var(--yellow-2); transform: translateY(-3px); }
.btn-cta-lg svg { width: 20px; height: 20px; }

.hero-trust {
  display: flex; align-items: center; gap: 9px;
  margin-top: 18px;
  font-size: 13.5px; color: rgba(255,255,255,0.42);
  font-weight: 600;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink:0; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }

/* ---------- HERO NEON SCENE ---------- */
.scene {
  position: relative; z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 0.92;
  display: flex; align-items: center; justify-content: center;
}
.neon { color: var(--yellow); filter: drop-shadow(0 0 6px rgba(250,195,18,0.85)) drop-shadow(0 0 16px rgba(250,195,18,0.45)); }

.tv {
  position: relative;
  width: 74%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #16161b 0%, #0c0c10 100%);
  border-radius: 14px;
  border: 7px solid #232329;
  box-shadow: 0 0 60px rgba(250,195,18,0.16), 0 40px 80px rgba(0,0,0,0.65), inset 0 0 60px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
}
.tv::after { /* stand */
  content:''; position:absolute; bottom:-26px; left:50%; transform:translateX(-50%);
  width: 38%; height: 10px; border-radius: 0 0 8px 8px;
  background: linear-gradient(#26262c, #16161a);
  box-shadow: 0 14px 22px rgba(0,0,0,0.6);
}
.tv-screen-content { display:flex; flex-direction:column; align-items:center; gap:6px; }
.tv-logo { width: 64%; max-width: 250px; height: auto; }
.tv-screen-content img { width: clamp(54px, 8vw, 86px); }
.tv-screen-content .brand-word { color: #fff; font-size: clamp(20px,2.6vw,30px); text-align:center; }
.tv-screen-content .brand-word .com { color: var(--yellow); }
.tv-screen-content .tag {
  font-family:'Nunito',sans-serif; font-weight:700; font-size:11px;
  color: rgba(255,255,255,0.45); letter-spacing:0.4px;
}

/* floating neon icons */
.float-icon { position: absolute; z-index: 5; }
.fi-wifi  { top: 4%;  left: 14%; width: 58px; animation: floaty 5s ease-in-out infinite; }
.fi-play  { left: 2%;  top: 46%; width: 56px; animation: floaty 6s ease-in-out infinite .4s; }
.fi-phone { right: 1%; top: 16%; width: 52px; animation: floaty 5.4s ease-in-out infinite .8s; }
.fi-tv    { right: 4%; top: 50%; width: 54px; animation: floaty 6.2s ease-in-out infinite .2s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

/* router + phone below */
.devices-row {
  position: absolute; bottom: 2%; left: 50%; transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 18px; z-index: 6;
}
.router {
  width: 150px; height: 56px;
  background: linear-gradient(160deg, #26262b, #131316);
  border-radius: 12px;
  position: relative;
  box-shadow: 0 18px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.router .leds { position:absolute; bottom:10px; left:14px; display:flex; gap:7px; }
.router .leds i { width:5px; height:5px; border-radius:50%; background:#37d67a; box-shadow:0 0 6px #37d67a; }
.router .leds i:nth-child(2){ background:#ffd23f; box-shadow:0 0 6px #ffd23f; }
.router .ant {
  position:absolute; top:-30px; width:4px; height:36px; border-radius:3px;
  background: linear-gradient(#2c2c32,#1a1a1e);
}
.router .ant.a1 { right: 16px; transform: rotate(18deg); }
.router .ant.a2 { right: 34px; transform: rotate(-2deg); }
.phone-dev {
  width: 56px; height: 112px;
  background: linear-gradient(160deg,#202025,#0e0e11);
  border-radius: 13px;
  border: 2px solid #2a2a30;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 18px 30px rgba(0,0,0,0.6);
}
.phone-dev img { width: 30px; filter: drop-shadow(0 0 8px rgba(250,195,18,0.6)); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: clamp(64px, 7vw, 104px) clamp(20px, 4vw, 54px); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.eyebrow {
  text-align: center;
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--yellow-dark); margin-bottom: 14px;
}
.sec-title {
  text-align: center;
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08; letter-spacing: -1px;
  color: var(--black); margin-bottom: 14px;
}
.sec-sub {
  text-align: center; color: var(--gray-text);
  font-size: 17px; line-height: 1.55;
  max-width: 520px; margin: 0 auto 52px;
}

/* ============================================================
   OFERTAS
   ============================================================ */
.packs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pack {
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pack:hover { transform: translateY(-6px); border-color: var(--yellow); box-shadow: 0 26px 60px rgba(0,0,0,0.1); }

.pack-head {
  background: var(--black);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.pack-head-title { font-family:'Nunito',sans-serif; font-weight:900; font-size:21px; color:#fff; line-height:1.15; }
.pack-head-title b { color: var(--yellow); }
.pack-head-sub { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 5px; font-weight: 600; }

/* vodafone badge */
/* vodafone badge — white chip */
.voda {
  display:flex; align-items:center; flex-shrink:0;
  background: #fff;
  border-radius: 9px; padding: 8px 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.voda-img { height: 22px; width: auto; display:block; }

/* chips */
.chips { display:flex; flex-wrap:wrap; gap:8px; padding: 18px 28px; border-bottom: 1px solid var(--gray-mid); }
.chip {
  display:flex; align-items:center; gap:7px;
  background: var(--gray-light); border-radius: 50px;
  padding: 7px 14px; font-family:'Nunito',sans-serif; font-weight:800; font-size:12.5px; color: var(--black);
}
.chip svg { width: 15px; height: 15px; flex-shrink:0; color: var(--ink-soft); }
.chip-pick { background: var(--yellow); color: var(--black); box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.08); }
.chip-pick svg { color: var(--black); }

/* platform tiles 2x2 */
.plats { display: grid; grid-template-columns: 1fr 1fr; }
.plat {
  padding: 22px 18px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  border-bottom: 1px solid var(--gray-mid);
  border-right: 1px solid var(--gray-mid);
  transition: background .15s ease;
}
.plat:nth-child(2n) { border-right: none; }
.plat:nth-last-child(-n+2) { border-bottom: none; }
.plat:hover { background: #FFFDF2; }
.plat-logo { min-height: 52px; display:flex; align-items:center; justify-content:center; }
.plat-img { width: auto; display: block; object-fit: contain; }
/* optically balanced sizes per brand */
.plat-img[src*="primevideo"] { height: 27px; }
.plat-img[src*="netflix"]    { height: 23px; }
.plat-img[src*="max"]        { height: 26px; }
.plat-img[src*="disney"]     { height: 50px; }
.plat-price { line-height: 1; }
.plat-price .amt { font-family:'Nunito',sans-serif; font-weight:900; font-size:27px; color: var(--black); }
.plat-price .amt sup { font-size: 15px; top: -0.5em; font-weight: 800; }
.plat-price .per { font-family:'Nunito',sans-serif; font-weight:700; font-size:12px; color: var(--gray-text); }
.plat-after { font-size: 11px; color: var(--gray-text); margin-top: 6px; line-height: 1.35; font-weight: 600; }
.plat-after b { color: var(--ink-soft); font-weight: 800; }

/* footer of pack */
.pack-foot { margin-top: auto; padding: 22px 28px 26px; background: #FAFAF6; border-top: 1px solid var(--gray-mid); }
.promo {
  display:flex; align-items:center; gap:11px;
  background: var(--yellow);
  border-radius: 12px; padding: 13px 16px;
  font-family:'Nunito',sans-serif; font-weight:800; font-size:13.5px; color: var(--black);
  margin-bottom: 18px; position: relative; overflow: hidden;
}
.promo svg { width: 22px; height: 22px; flex-shrink:0; }
.promo::before {
  content:''; position:absolute; top:0; left:-100%; width:55%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-100%;} 100%{left:200%;} }
.pack-foot-row { display:flex; align-items:flex-end; justify-content:space-between; gap:18px; }
.pack-note { font-size: 11.5px; color: var(--gray-text); line-height: 1.55; max-width: 250px; }
.btn-card {
  display:inline-flex; align-items:center; gap:9px;
  background: var(--yellow); color: var(--black);
  font-family:'Nunito',sans-serif; font-weight:800; font-size:14.5px;
  padding: 13px 24px; border-radius: 50px;
  border: 2px solid var(--black); box-shadow: var(--shadow-neo);
  cursor:pointer; text-decoration:none; white-space:nowrap;
  transition: transform .14s ease, box-shadow .14s ease;
}
.btn-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-neo-lg); }
.btn-card svg { width: 16px; height: 16px; }
.iva-note { text-align:center; font-size:12.5px; color: var(--gray-text); margin-top: 26px; }

/* ============================================================
   ¿POR QUÉ CHILLCOM?
   ============================================================ */
.porque { background: radial-gradient(900px 500px at 50% 0%, #18181d 0%, var(--black) 70%); }
.porque .eyebrow { color: var(--yellow); }
.porque .sec-title { color: #fff; max-width: 820px; margin-left:auto; margin-right:auto; }
.porque-intro {
  text-align:center; max-width: 660px; margin: 22px auto 56px;
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.55);
}
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1060px; margin: 0 auto; }
.reason {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.reason:hover { transform: translateY(-5px); background: rgba(250,195,18,0.06); border-color: rgba(250,195,18,0.26); }
.reason-ic {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(250,195,18,0.12); border: 1px solid rgba(250,195,18,0.22);
  display:flex; align-items:center; justify-content:center; margin-bottom: 20px;
  color: var(--yellow);
}
.reason-ic svg { width: 25px; height: 25px; }
.reason p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.reason p b { color: #fff; font-weight: 800; font-family:'Nunito',sans-serif; display:block; margin-bottom: 5px; font-size: 16px; }

/* ============================================================
   FORMULARIO (cálido)
   ============================================================ */
.form-sec {
  background:
    radial-gradient(520px 360px at 12% 30%, rgba(250,195,18,0.12), transparent 70%),
    radial-gradient(620px 420px at 88% 70%, rgba(224,168,0,0.1), transparent 72%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
}
.form-card {
  max-width: 880px; margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 4vw, 56px) clamp(26px, 4vw, 58px);
  box-shadow: 0 30px 70px rgba(120,90,10,0.12), 0 4px 12px rgba(0,0,0,0.04);
}
.form-title { font-family:'Nunito',sans-serif; font-weight:900; font-size: clamp(26px,3.4vw,38px); text-align:center; letter-spacing:-0.6px; margin-bottom: 10px; }
.form-sub { text-align:center; color: var(--ink-soft); font-size: 16px; line-height: 1.5; margin-bottom: 38px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 18px; }
.field { display:flex; flex-direction:column; text-align:left; }
.field-wide { grid-column: 1 / -1; }
.field label { font-family:'Nunito',sans-serif; font-weight:800; font-size:13.5px; color: var(--black); margin-bottom: 9px; }
.field input, .field select {
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px; padding: 14px 16px;
  font-family:'Nunito Sans',sans-serif; font-size: 15px; color: var(--black);
  outline: none; transition: border-color .18s ease, box-shadow .18s ease; width: 100%;
}
.field input::placeholder { color: #b6b6ae; }
.field select { appearance: none; cursor: pointer; color: var(--ink-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A82' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(250,195,18,0.16); }
.btn-submit {
  width: 100%; margin-top: 26px;
  display:flex; align-items:center; justify-content:center; gap:11px;
  background: var(--yellow); color: var(--black);
  font-family:'Nunito',sans-serif; font-weight:900; font-size: 18px;
  padding: 18px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 10px 30px rgba(250,195,18,0.34);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-grid .btn-submit { grid-column: 2 / 4; margin-top: 0; align-self: end; }
.btn-submit:hover { background: var(--yellow-2); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(250,195,18,0.45); }
.btn-submit svg { width: 20px; height: 20px; }

/* consent checkboxes */
.form-consent { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; text-align: left; }
.consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-box {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  border: 1.8px solid var(--gray-mid); border-radius: 7px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .16s ease, background .16s ease;
}
.consent-box svg { width: 14px; height: 14px; color: var(--black); opacity: 0; transform: scale(.6); transition: opacity .16s ease, transform .16s ease; }
.consent input:checked + .consent-box { background: var(--yellow); border-color: var(--yellow); }
.consent input:checked + .consent-box svg { opacity: 1; transform: scale(1); }
.consent input:focus-visible + .consent-box { box-shadow: 0 0 0 4px rgba(250,195,18,0.22); }
.consent-text { font-family: 'Nunito Sans', sans-serif; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.consent-text a { color: var(--ink-soft); font-weight: 700; text-decoration: underline; }
.consent-text a:hover { color: var(--yellow-dark); }
.form-priv { margin-top: 20px; text-align:center; font-size: 12.5px; color: var(--gray-text); line-height: 1.6; display:flex; align-items:center; justify-content:center; gap:7px; flex-wrap:wrap; }
.form-priv svg { width: 14px; height: 14px; }
.form-priv a { color: var(--ink-soft); font-weight: 700; text-decoration: underline; }

/* Tally embed wrapper (placeholder until FORMID is replaced) */
.tally-embed {
  position: relative;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px dashed var(--gray-mid);
}
.tally-embed::before {
  content: "Formulario de Tally · sustituye \"FORMID\" en el código por el ID de tu formulario";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 24px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--gray-text);
  background: repeating-linear-gradient(45deg, #fafaf6, #fafaf6 12px, #f4f4ee 12px, #f4f4ee 24px);
}
.tally-embed iframe {
  position: relative; z-index: 1;
  width: 100%; min-height: 420px; border: 0; display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); padding: 56px clamp(20px,4vw,54px) 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.foot-top {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
footer .brand-word { font-size: 19px; color: #fff; }
footer .brand-word .com { color: var(--yellow); }
footer .brand-claim { color: rgba(255,255,255,0.32); }
.foot-links { display:flex; gap: 30px; justify-content:center; flex-wrap:wrap; }
.foot-links a { font-family:'Nunito',sans-serif; font-weight:700; font-size:13.5px; color: rgba(255,255,255,0.4); text-decoration:none; transition: color .18s; }
.foot-links a:hover { color: var(--yellow); }
.foot-social { display:flex; gap: 11px; }
.soc {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center; color: rgba(255,255,255,0.6);
  text-decoration:none; transition: all .16s ease;
}
.soc:hover { background: rgba(250,195,18,0.1); border-color: rgba(250,195,18,0.32); color: var(--yellow); }
.soc svg { width: 17px; height: 17px; }
.foot-legal { max-width: var(--maxw); margin: 26px auto 0; font-size: 11.5px; color: rgba(255,255,255,0.28); line-height: 1.7; text-align: center; max-width: 760px; }

/* ============================================================
   LEGAL PAGES (aviso legal · política de privacidad)
   ============================================================ */
.legal-hero {
  margin-top: 74px;
  background: radial-gradient(900px 500px at 50% -10%, #18181d 0%, var(--black) 70%);
  color: #fff;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 4vw, 54px) clamp(48px, 6vw, 70px);
  text-align: center;
}
.legal-hero .eyebrow { color: var(--yellow); }
.legal-hero h1 {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.04; letter-spacing: -1.4px;
  color: #fff; margin: 0 auto 16px; max-width: 820px;
}
.legal-hero h1 .hl { color: var(--yellow); }
.legal-hero .legal-meta { color: rgba(255,255,255,0.5); font-size: 14.5px; font-weight: 600; }

.legal-sec { padding: clamp(54px, 6vw, 86px) clamp(20px, 4vw, 54px) clamp(40px, 5vw, 64px); background: var(--white); }
.legal-wrap { max-width: 820px; margin: 0 auto; }

.legal-intro {
  font-size: 17px; line-height: 1.75; color: var(--ink-soft);
  border-left: 4px solid var(--yellow); padding-left: 22px; margin-bottom: 44px;
}
.legal-intro b { color: var(--black); font-weight: 800; }

/* numbered / titled blocks */
.legal-block { padding: 26px 0; border-bottom: 1px solid var(--gray-mid); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: clamp(18px, 2.2vw, 22px); color: var(--black); letter-spacing: -0.4px;
  margin-bottom: 12px; display: flex; align-items: baseline; gap: 12px;
}
.legal-block h2 .num {
  flex-shrink: 0;
  font-size: 14px; font-weight: 900; color: var(--yellow-dark);
  background: rgba(250,195,18,0.14); border: 1px solid rgba(250,195,18,0.3);
  border-radius: 9px; padding: 3px 10px; line-height: 1.4;
}
.legal-block p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); }
.legal-block p + p { margin-top: 14px; }
.legal-block b { color: var(--black); font-weight: 800; }
.legal-block a { color: var(--yellow-dark); font-weight: 700; text-decoration: underline; word-break: break-word; }

/* identity / contact card */
.legal-card {
  background: var(--cream); border: 1px solid var(--cream-2); border-radius: var(--radius-lg);
  padding: 24px 28px; margin: 6px 0 4px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.legal-card .ci { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.legal-card .ci .k { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--yellow-dark); margin-bottom: 2px; }
.legal-card .ci .v { color: var(--black); font-weight: 700; }
.legal-card .ci a { color: var(--black); text-decoration: none; }
.legal-card .ci a:hover { color: var(--yellow-dark); }

.legal-back {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 44px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px;
  color: var(--black); text-decoration: none;
  background: var(--yellow); border: 2px solid var(--black); box-shadow: var(--shadow-neo);
  padding: 12px 24px; border-radius: 50px;
  transition: transform .14s ease, box-shadow .14s ease;
}
.legal-back:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-neo-lg); }
.legal-back svg { width: 17px; height: 17px; }

@media (max-width: 620px) {
  .legal-card { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .btn-cta-lg, .float-icon { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .reasons { grid-template-columns: 1fr; max-width: 520px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .btn-submit { grid-column: 1; margin-top: 6px; align-self: stretch; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero { text-align: center; min-height: 0; }
  .hero-left { max-width: 100%; }
  .hero-desc, .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero {
    background:
      linear-gradient(180deg, rgba(8,8,10,0.86) 0%, rgba(8,8,10,0.78) 55%, rgba(8,8,10,0.9) 100%),
      url('assets/BANNER.png') center center / cover no-repeat,
      #08080a;
  }
  .packs { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 460px) {
  .pack-foot-row { flex-direction: column; align-items: stretch; }
  .btn-card { justify-content: center; }
  .plat-price .amt { font-size: 23px; }
}
