/* =========================================================================
   VODAEVENTOS — Fiestas de Graduación
   Hoja de estilos principal
   Paleta y tipografías derivadas del diseño aprobado (mockup V2).
   ========================================================================= */

/* ----------------------------- Tipografías ----------------------------- */
@font-face {
  font-family: 'Anton';
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Orkney';
  src: url('../fonts/Orkney-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Orkney';
  src: url('../fonts/Orkney-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Orkney';
  src: url('../fonts/Orkney-RegularItalic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Orkney';
  src: url('../fonts/Orkney-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Orkney';
  src: url('../fonts/Orkney-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.ttf') format('truetype');
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Italic.ttf') format('truetype');
  font-weight: 400 900; font-style: italic; font-display: swap;
}

/* ----------------------------- Tokens ----------------------------- */
:root {
  --navy:    #0a192c;
  --navy-2:  #0c2037;
  --navy-3:  #112a45;
  --navy-4:  #16365a;
  --cyan:    #11cbff;
  --cyan-d:  #0bb1e0;
  --celeste: #2bb3ea;  /* celeste de la "pulsera" (más suave que el cyan) */
  --light:   #f2f2f2;
  --white:   #ffffff;
  --ink:     #1b2735;
  --muted:   #66727f;
  --muted-d: #9fb0c2;

  --font-display: 'Anton', 'Orkney', sans-serif;  /* títulos impacto (intercambiable) */
  --font-serif:   'Playfair Display', Georgia, serif; /* acentos elegantes */
  --font-body:    'Orkney', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(6, 18, 36, .18);
  --shadow-soft: 0 8px 24px rgba(6, 18, 36, .12);
  --header-h: 76px;
}

/* ----------------------------- Reset / base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; position: relative; }

/* Títulos de sección */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.05;
}
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }
.section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 38px;
}
.section-sub.light { color: rgba(255,255,255,.85); }
.section-sub.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--cyan-d);
  margin-bottom: 14px;
}
.cyan { color: var(--cyan-d); }

/* Botones */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .98rem; letter-spacing: .3px;
  padding: 13px 28px; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-cyan { background: var(--cyan); color: var(--navy); }
.btn-cyan:hover { background: var(--cyan-d); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,203,255,.35); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1eb958; transform: translateY(-2px); }

/* ============================ HEADER / NAV ============================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(10, 25, 44, .55);
  backdrop-filter: blur(8px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand-logo { height: 38px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; color: rgba(255,255,255,.86);
  font-weight: 500; font-size: .92rem; letter-spacing: .4px;
  text-transform: uppercase; padding: 8px 12px; border-radius: 8px;
  white-space: nowrap; transition: color .2s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--cyan); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover { color: #fff; }
.nav-link.is-active { color: #fff; }
.nav-link.is-active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--cyan); color: var(--navy) !important;
  font-weight: 700; margin-left: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--cyan-d); }

.nav-acceso {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--celeste); color: #fff !important;
  font-weight: 700; margin-left: 8px;
}
.nav-acceso::after { display: none; }
.nav-acceso:hover { background: #1f9ed4; }
.nav-acceso svg { flex: 0 0 auto; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; color: #fff;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,25,44,.55) 0%, rgba(10,25,44,.35) 40%, rgba(10,25,44,.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 6.6rem);
  text-transform: uppercase; letter-spacing: 1px;
  line-height: .98; margin: 0;
  text-shadow: 0 6px 30px rgba(0,0,0,.45);
}
.hero-subtitle {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--cyan); margin: 14px 0 30px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-btn { font-size: 1.05rem; padding: 15px 34px; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ============================ SOMOS ============================ */
.somos { background: var(--light); padding: 100px 0; }
.somos-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: 30px; align-items: center;
}
.somos-col { display: grid; gap: 18px; }
.somos-img { border-radius: var(--radius); box-shadow: var(--shadow-soft); object-fit: cover; width: 100%; }
.somos-img.a { height: 180px; }
.somos-img.b { height: 230px; }
.somos-img.c { height: 250px; }
.somos-img.d { height: 160px; }
.somos-center { text-align: center; padding: 0 6px; }
.somos-statement {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.32; color: var(--navy); margin: 0 0 18px;
}
.somos-statement strong { font-weight: 800; }
.somos-text { color: var(--muted); font-size: 1.02rem; max-width: 360px; margin: 0 auto; }

/* ============================ SERVICIOS ============================ */
.servicios { background: var(--navy); overflow: hidden; }
.servicios-bg {
  position: absolute; inset: 0; opacity: .16; z-index: 0;
  background: url('../assets/img/bg_dance.jpg') center/cover no-repeat;
}
.servicios .container { position: relative; z-index: 1; }
.servicios .section-title { text-align: center; margin-bottom: 46px; }

.carousel { position: relative; display: flex; align-items: center; gap: 10px; }
.car-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 16px; scroll-behavior: smooth;
  scrollbar-width: none; flex: 1;
}
.car-track::-webkit-scrollbar { display: none; }
.serv-card {
  flex: 0 0 clamp(220px, 25%, 270px); scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s ease;
}
.serv-card:hover { transform: translateY(-6px); }
.serv-photo { aspect-ratio: 5/4; overflow: hidden; }
.serv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.serv-card:hover .serv-photo img { transform: scale(1.06); }
.serv-name {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.4rem; text-align: center; color: var(--navy);
  margin: 0; padding: 16px 10px 20px;
}
.car-arrow {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center; cursor: pointer; transition: .2s;
}
.car-arrow:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }

/* ============================ PLATAFORMA ============================ */
.plataforma {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0a192c 0%, #0e2742 58%, #113458 100%);
}
.plataforma-glow {
  position: absolute; top: -25%; right: -12%; width: 65%; height: 100%;
  background: radial-gradient(circle, rgba(17,203,255,.16), transparent 60%);
  pointer-events: none;
}
.plataforma-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center;
}
.plat-eyebrow { color: var(--cyan); }
.plataforma .section-title { text-align: left; margin-bottom: 16px; }
.plat-intro { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.65; margin: 0 0 26px; max-width: 540px; }
.plat-intro strong { color: #fff; }

.plat-benefits { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 16px; }
.plat-benefits li { display: flex; gap: 14px; align-items: flex-start; }
.pb-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px;
  background: rgba(17,203,255,.12); color: var(--cyan);
  display: grid; place-items: center; border: 1px solid rgba(17,203,255,.25);
}
.plat-benefits strong { display: block; color: #fff; font-size: 1.02rem; margin-bottom: 2px; }
.plat-benefits div span { display: block; color: rgba(255,255,255,.72); font-size: .94rem; line-height: 1.5; }
.plat-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

/* Mockup navegador "Mi VodaEventos" */
.plat-mockup { perspective: 1500px; }
.browser {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  transform: rotateY(-6deg) rotateX(2deg);
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #e9edf2; }
.bdot { width: 11px; height: 11px; border-radius: 50%; }
.bdot:nth-child(1){ background:#ff5f57; } .bdot:nth-child(2){ background:#febc2e; } .bdot:nth-child(3){ background:#28c840; }
.browser-url {
  margin-left: 8px; flex: 1; background: #fff; border-radius: 6px;
  padding: 5px 12px; font-size: .8rem; color: #66727f;
  display: flex; align-items: center; gap: 6px;
}
.login-screen { display: grid; grid-template-columns: 1fr 1fr; min-height: 330px; }
.login-form { padding: 26px 24px; display: flex; flex-direction: column; }
.login-logo { height: 20px; width: auto; align-self: flex-start; margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(45%) saturate(1900%) hue-rotate(186deg); }
.login-form h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin: 0 0 4px; }
.login-form > p { font-size: .82rem; color: var(--muted); margin: 0 0 16px; line-height: 1.4; }
.lf-label { font-size: .72rem; color: var(--navy); font-weight: 600; margin-bottom: 5px; }
.lf-input { height: 34px; border: 1.5px solid #d7dde4; border-radius: 7px; background: #fbfcfd; margin-bottom: 12px; }
.lf-btn { height: 38px; border-radius: 7px; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; margin-top: 4px; }
.lf-link { text-align: center; font-size: .78rem; color: var(--navy); font-weight: 600; margin-top: 11px; }
.login-photos { display: grid; grid-template-columns: 1fr 1fr; }
.login-photos img { width: 100%; height: 100%; object-fit: cover; min-height: 90px; }

/* ============================ CLIENTES (marquee) ============================ */
.clientes { background: var(--light); padding-bottom: 80px; text-align: center; }
.clientes .section-title { color: var(--navy); }
.marquee { margin-top: 34px; padding: 14px 0 30px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 30px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-chip {
  flex: 0 0 auto; width: 150px; height: 110px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px; overflow: hidden;
}
.logo-chip img { max-width: 100%; max-height: 80px; width: auto; height: auto; object-fit: contain; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================ CENTROS (interactivo) ============================ */
.centros { background: var(--navy); position: relative; overflow: hidden; min-height: 660px; display: flex; align-items: center; }
.centros-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: opacity .5s ease; }
.centros-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(10,25,44,.85), rgba(10,25,44,.78)); }
.centros .container { position: relative; z-index: 1; width: 100%; }
.centros-stage { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 24px; align-items: center; min-height: 540px; }
.cstage-side { display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.cstage-side.left { align-items: flex-start; }
.cstage-side.right { align-items: flex-end; text-align: right; }
.cphoto {
  width: 100%; max-width: 300px; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; box-shadow: 0 18px 44px rgba(0,0,0,.55); border: 4px solid rgba(255,255,255,.12);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.cp-b { max-width: 230px; }
.cp-c { max-width: 290px; }
.canno {
  font-family: var(--font-serif); font-style: italic; color: #fff;
  font-size: 1.02rem; line-height: 1.4; margin: 0; max-width: 290px;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.cweb { color: var(--cyan); cursor: pointer; font-weight: 600; }
.cweb:hover { text-decoration: underline; text-underline-offset: 3px; }
.cstage-center { text-align: center; }
.centros-list { display: flex; flex-direction: column; margin-top: 26px; }
.centro-item {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1rem, 1.7vw, 1.45rem); letter-spacing: .6px;
  color: rgba(255,255,255,.85); background: none; border: 0; cursor: pointer;
  padding: 13px 4px; transition: color .2s ease; border-bottom: 1px solid rgba(255,255,255,.1);
}
.centros-list .centro-item:last-child { border-bottom: 0; }
.centro-item:hover { color: #fff; }
.centro-item.active { color: var(--cyan); }

/* ============================ PULSERA (divider) ============================ */
.pulsera { background: var(--celeste); padding: 13px 0; }
.pulsera-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 26px;
  display: flex; flex-direction: column; gap: 9px; color: #fff;
}
.pulsera-row { display: flex; align-items: center; gap: 16px; }
.pulsera-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; flex: 0 0 auto; }
.pulsera-dot.filled { background: #fff; }
.pulsera-logo { height: 26px; width: auto; filter: brightness(0) invert(1); }
.pulsera-text { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 1.2rem; white-space: nowrap; }
.pulsera-dots { margin-left: auto; display: flex; gap: 20px; }
.pulsera-dots span { width: 9px; height: 9px; border-radius: 50%; background: #fff; opacity: .92; }
.pulsera-icons { display: flex; gap: 22px; color: #fff; }
.pulsera-icons svg { display: block; }

/* ============================ TESTIMONIOS ============================ */
.testimonios {
  position: relative; background: url('../assets/img/bg_party.jpg') center/cover fixed no-repeat;
}
.testimonios-overlay { position: absolute; inset: 0; background: rgba(10,25,44,.82); }
.testimonios .container { position: relative; z-index: 1; }
.testimonios .section-title { margin-bottom: 44px; }
.testi-carousel { display: flex; align-items: center; gap: 14px; }
.testi-viewport { flex: 1; overflow: hidden; }
.testi-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card {
  flex: 0 0 100%; padding: 0 10px;
  display: flex; justify-content: center;
}
.testi-inner {
  background:
    repeating-linear-gradient(transparent 0 30px, rgba(43,179,234,.07) 30px 31px),
    #fdfdf8;
  color: var(--ink); max-width: 700px; width: 100%;
  border-radius: 4px; padding: 38px 44px;
  box-shadow: 0 22px 50px rgba(0,0,0,.4);
  position: relative; z-index: 1; transform: rotate(-.8deg);
}
.testi-inner::before, .testi-inner::after {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}
.testi-inner::before { z-index: -1; background: #efece2; transform: rotate(3deg); }
.testi-inner::after  { z-index: -2; background: #f6f4ec; transform: rotate(-2.2deg) translateY(6px); }
.testi-quote { font-size: 1.05rem; line-height: 1.7; font-style: italic; color: #2c3845; margin: 0 0 22px; }
.testi-quote::before { content: '“'; font-family: var(--font-serif); font-size: 2.4rem; color: var(--cyan-d); line-height: 0; vertical-align: -.35em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 6px; flex-direction: column; align-items: flex-start; }
.testi-name { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.testi-role { font-size: .9rem; color: var(--muted); font-weight: 500; }
.testi-arrow {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3);
  display: grid; place-items: center; cursor: pointer; transition: .2s;
}
.testi-arrow:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.testi-dots { display: flex; gap: 9px; justify-content: center; margin-top: 28px; }
.testi-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); transition: .2s;
}
.testi-dots button.active { background: var(--cyan); transform: scale(1.25); }

/* ============================ COTIZA ============================ */
.cotiza {
  position: relative; background: url('../assets/img/ev_arrive.jpg') center/cover fixed no-repeat;
}
.cotiza-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,25,44,.9), rgba(10,25,44,.82)); }
.cotiza .container { position: relative; z-index: 1; }
.cotiza .section-sub { margin-bottom: 40px; }
.cotiza-form {
  background: rgba(255,255,255,.97); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px;
  max-width: 880px; margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label, .field-legend { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 8px 2px; border: 0; border-bottom: 2px solid #cbd4de;
  background: transparent; transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-bottom-color: var(--celeste);
}
.field textarea { resize: vertical; border: 2px solid #cbd4de; border-radius: 8px; padding: 10px 12px; }
.field textarea:focus { border-color: var(--celeste); }
.radios { display: flex; gap: 22px; padding-top: 4px; }
.radio { display: flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; color: var(--ink); }
.radio input { accent-color: var(--cyan-d); width: 18px; height: 18px; }
.cotiza-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-msg { grid-column: 1/-1; margin: 4px 0 0; font-weight: 600; min-height: 1.2em; }
.form-msg.ok { color: #138a4e; }
.form-msg.err { color: #c0392b; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.82); padding-top: 60px; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--celeste));
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px;
  align-items: start; padding-bottom: 46px;
}
.footer-logo { height: 50px; margin-bottom: 14px; }
.footer-tag { font-family: var(--font-serif); font-style: italic; color: var(--cyan); margin: 0 0 12px; font-size: 1.1rem; }
.footer-desc { color: rgba(255,255,255,.6); max-width: 400px; margin: 0 0 20px; font-size: .95rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover { background: var(--cyan); color: var(--navy); transform: translateY(-2px); }
.footer-h { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1rem; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.fc-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.85); transition: color .2s; }
.fc-item:hover { color: var(--cyan); }
.fc-item svg { color: var(--cyan); flex: 0 0 auto; }
.footer-cta { margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  text-align: center; font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ============================ WhatsApp flotante ============================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ============================ PÁGINA PLATAFORMA ============================ */
.pp-hero {
  position: relative; overflow: hidden; padding: 150px 0 80px;
  background: linear-gradient(160deg, #0a192c 0%, #0e2742 60%, #113458 100%);
  color: #fff; text-align: center;
}
.pp-hero-glow { position: absolute; top: -25%; left: 50%; transform: translateX(-50%); width: 75%; height: 110%; background: radial-gradient(circle, rgba(17,203,255,.16), transparent 60%); pointer-events: none; }
.pp-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.pp-title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.02; text-transform: uppercase; margin: 10px 0 18px; }
.pp-sub { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.7; margin: 0 auto 30px; max-width: 620px; }
.pp-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.pp-flow { background: var(--light); }
.pp-flow .section-sub { text-align: center; margin-bottom: 40px; }
.flow { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.flow-start, .flow-end { background: #fff; border-radius: 14px; box-shadow: var(--shadow-soft); padding: 26px 30px; text-align: center; max-width: 560px; width: 100%; }
.flow-start h3, .flow-end h3 { font-family: var(--font-body); font-weight: 700; color: var(--navy); font-size: 1.2rem; margin: 12px 0 6px; }
.flow-start p, .flow-end p { color: var(--muted); margin: 0; font-size: .96rem; }
.flow-badge { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--cyan); color: var(--navy); font-weight: 800; font-size: 1.1rem; }
.flow-badge.done { background: #28c840; color: #fff; }
.flow-arrow { color: var(--cyan); padding: 14px 0; }
.flow-ve { background: var(--navy); border-radius: 16px; padding: 30px; width: 100%; box-shadow: var(--shadow); }
.flow-ve-head { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 24px; }
.flow-ve-head h3 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1.3rem; margin: 0; }
.flow-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.flow-step { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; padding: 14px 16px; }
.fs-ico { font-size: 1.4rem; flex: 0 0 auto; line-height: 1.1; }
.flow-step strong { display: block; color: #fff; font-size: .98rem; margin-bottom: 3px; }
.flow-step span { display: block; color: rgba(255,255,255,.66); font-size: .86rem; line-height: 1.45; }

.pp-pay { background: var(--navy); }
.pp-pay .section-sub { text-align: center; margin-bottom: 40px; }
.pay-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pay-card { background: var(--navy-3); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 32px 26px; text-align: center; transition: transform .25s; }
.pay-card:hover { transform: translateY(-6px); }
.pay-ico { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 14px; background: rgba(17,203,255,.12); color: var(--cyan); display: grid; place-items: center; border: 1px solid rgba(17,203,255,.25); }
.pay-card h3 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1.15rem; margin: 0 0 8px; }
.pay-card p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.5; margin: 0; }

.pp-video { background: var(--light); }
.pp-video .section-sub { text-align: center; margin-bottom: 38px; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 980px; margin: 0 auto; }
.video-item { display: flex; flex-direction: column; }
.video-frame { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin: 16px 0 0; }
.video-num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--cyan); color: var(--navy); font-size: .85rem; font-weight: 800; flex: 0 0 auto; }

.pp-cta { background: linear-gradient(135deg, var(--cyan), var(--celeste)); color: var(--navy); text-align: center; padding: 72px 0; }
.pp-cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; margin: 0 0 12px; }
.pp-cta p { font-size: 1.05rem; margin: 0 auto 26px; max-width: 540px; }
.pp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pp-cta .btn-cyan { background: var(--navy); color: #fff; }
.pp-cta .btn-cyan:hover { background: #06101f; }
.pp-cta .btn-ghost { border-color: rgba(10,25,44,.4); color: var(--navy); }
.pp-cta .btn-ghost:hover { background: rgba(10,25,44,.1); border-color: var(--navy); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .nav {
    position: fixed; top: var(--header-h); right: 0;
    width: min(78vw, 320px); height: calc(100vh - var(--header-h));
    background: var(--navy); flex-direction: column; align-items: stretch;
    gap: 2px; padding: 20px; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 10px 0 0; text-align: center; justify-content: center; }
  .nav-acceso { margin: 8px 0 0; justify-content: center; }
  .nav-toggle { display: flex; }

  .somos-grid { grid-template-columns: 1fr; gap: 26px; }
  .somos-center { order: -1; }
  .somos-col { grid-template-columns: 1fr 1fr; }
  .somos-img.a,.somos-img.b,.somos-img.c,.somos-img.d { height: 200px; }

  .centros { min-height: 0; }
  .centros-stage { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .cstage-center { order: -1; }
  .cstage-side { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
  .cstage-side.left, .cstage-side.right { align-items: center; text-align: center; }
  .cphoto, .cp-b, .cp-c { max-width: 200px; flex: 0 1 200px; transform: none !important; }
  .canno { max-width: 100%; flex-basis: 100%; text-align: center; }

  .plataforma-grid { grid-template-columns: 1fr; gap: 34px; }
  .browser { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 26px; text-align: left; }
}

@media (max-width: 940px) {
  /* background-attachment: fixed es problemático en iOS/Android */
  .testimonios, .cotiza { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .hero { min-height: 540px; }
  .cotiza-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .pulsera-text { font-size: 1rem; }
  .pulsera-icons { gap: 12px; }
  .pulsera-logo { height: 24px; }
  .testi-inner { padding: 28px 24px; }
  .car-arrow { width: 40px; height: 40px; }
  .login-form { padding: 20px 18px; }
  .login-form > p { display: none; }
  .cphoto, .cp-b, .cp-c { max-width: 44%; flex: 0 1 44%; }
  .flow-steps { grid-template-columns: 1fr; }
  .pay-cards { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
  .flow-ve { padding: 22px 18px; }
  .pp-hero { padding: 120px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}
