:root{
  --bg0:#061521;
  --bg1:#0B2B45;
  --ice:#2AA7FF;
  --ice2:#7ED6FF;
  --text:#0B1320;
  --white:#ffffff;
  --card:rgba(255,255,255,.78);
  --glass:rgba(255,255,255,.14);
  --stroke:rgba(255,255,255,.22);
  --shadow: 0 16px 60px rgba(0,0,0,.20);
  --r: 22px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:rgba(255,255,255,.92);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(126,214,255,.25), transparent 55%),
              radial-gradient(900px 600px at 85% 20%, rgba(42,167,255,.20), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1100px, 92%); margin-inline:auto}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Fondo global */
.bg{position:fixed; inset:0; z-index:-2; pointer-events:none}
.bg__glow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(126,214,255,.18), transparent 55%),
              radial-gradient(circle at 70% 50%, rgba(42,167,255,.16), transparent 55%);
  filter: blur(10px);
}
.bg__noise{
  position:absolute; inset:0;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(6,21,33,.82), rgba(6,21,33,.35));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}

.brand{display:flex; gap:12px; align-items:center; min-width:240px}
.brand__logo{
  width: 65px;
  height: 65px;
  object-fit:contain;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:.5px}
.brand__tag{font-size:.84rem; opacity:.85}

.nav__toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
}
.hamburger{
  display:inline-block;
  width:18px; height:2px; background:#fff; position:relative;
}
.hamburger::before,.hamburger::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:#fff;
}
.hamburger::before{top:-6px}
.hamburger::after{top:6px}

.nav__menu{
  list-style:none; display:flex; gap:10px; align-items:center; margin:0; padding:0;
}
.nav__link{
  display:inline-flex; align-items:center;
  padding:10px 12px; border-radius:14px;
  color:rgba(255,255,255,.92);
  border:1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.nav__link--phone{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.14);
}

/* Hero + parallax */
.parallax{
  position:relative;
  background-image: var(--bg);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}
.hero{
  padding: 56px 0 42px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero__panel{
  background: linear-gradient(180deg, rgba(11,43,69,.92), rgba(11,43,69,.70));
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero__panel h1{
  margin:0 0 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height:1.1;
}
.hero__panel p{margin:0 0 18px; font-size:1.02rem; opacity:.95}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}

.btn{
  display:inline-flex; justify-content:center; align-items:center;
  padding: 12px 16px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:#fff;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn--primary{
  background: linear-gradient(135deg, rgba(42,167,255,.95), rgba(126,214,255,.88));
  border-color: rgba(255,255,255,.18);
  color:#04111c;
  font-weight:800;
}
.btn--ghost{background:rgba(255,255,255,.08)}
.btn--full{width:100%}

.hero__chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.chip{
  font-size:.86rem;
  padding: 7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.hero__glass{display:flex; align-items:stretch}
.glass-card{
  width:100%;
  border-radius: var(--r);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass-card__top{
  display:flex; gap:8px; padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.dot{width:10px; height:10px; border-radius:999px; background:rgba(255,255,255,.35)}
.glass-card__body{padding:18px}
.glass-card__body h3{margin:0 0 6px}
.glass-card__body p{margin:0 0 12px; opacity:.9}
.checklist{margin:0; padding-left:18px; opacity:.95}
.checklist li{margin:6px 0}

.hero__fade{
  position:absolute; left:0; right:0; bottom:0; height:80px;
  background: linear-gradient(180deg, transparent, rgba(6,21,33,.95));
}

/* Secciones */
.section{padding: 64px 0; position:relative}
.section--tight{padding: 52px 0}
.section__fade{
  position:absolute; left:0; right:0; bottom:0; height:90px;
  background: linear-gradient(180deg, transparent, rgba(6,21,33,.92));
}

.kicker{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:.84rem;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  margin:0 0 10px;
  opacity:.95;
}
.kicker--blue{
  background: rgba(126,214,255,.18);
  border-color: rgba(126,214,255,.26);
}
h2{
  margin:0 0 10px;
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height:1.15;
}
.lead{font-size:1.03rem; opacity:.92}
.prose p{opacity:.92; line-height:1.65}

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

.media-card{
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.media-card img{width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3}

.subtitle{
  margin:0 0 10px;
  font-size:1.28rem;
  color: rgba(126,214,255,.98);
}

.banner-ice{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(126,214,255,.18), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
}
.banner-ice__content{padding:22px}
.banner-ice__title{
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:.6px;
}
.banner-ice__content p{margin:0; opacity:.9; line-height:1.55}
.banner-ice__media img{width:100%; height:100%; object-fit:cover}

/* Productos */
.products-card{
  background: rgba(11,43,69,.88);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.product-list{
  margin:14px 0 0;
  padding-left:18px;
  line-height:1.75;
}
.pill{
  display:inline-block; margin-left:8px;
  padding:3px 8px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-size:.78rem;
}

/* Carrusel */
.carousel{
  position:relative;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.06);
}
.carousel__viewport{position:relative; height: min(420px, 62vw)}
.carousel__slide{
  position:absolute; inset:0;
  opacity:0; transform: scale(1.02);
  transition: opacity .45s ease, transform .45s ease;
}
.carousel__slide.is-active{opacity:1; transform:scale(1)}
.carousel__slide img{
  width:100%; height:100%; object-fit:cover;
}
.carousel__btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(6,21,33,.45);
  color:#fff;
  font-size:26px;
  display:grid; place-items:center;
  cursor:pointer;
  backdrop-filter: blur(10px);
}
.carousel__btn:hover{filter: brightness(1.07)}
.carousel__btn--prev{left:12px}
.carousel__btn--next{right:12px}

.carousel__dots{
  position:absolute; left:0; right:0; bottom:10px;
  display:flex; gap:8px; justify-content:center;
}
.dotbtn{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.20);
  cursor:pointer;
}
.dotbtn.is-active{background: rgba(126,214,255,.95); border-color: rgba(255,255,255,.35)}

/* Contacto */
.form-card{
  background: rgba(255,255,255,.92);
  color: #0B1320;
  border-radius: var(--r);
  padding: 24px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.form-card .kicker{color:#0B1320}
.form-card h2{color:#071424}
.form{margin-top:10px}
.field{display:flex; flex-direction:column; gap:6px; margin:12px 0}
label{font-weight:700; font-size:.92rem}
input, textarea{
  border-radius: 16px;
  border:1px solid rgba(10,30,46,.18);
  padding: 12px 12px;
  font-family: var(--font);
  outline:none;
  background:#fff;
}
input:focus, textarea:focus{
  border-color: rgba(42,167,255,.65);
  box-shadow: 0 0 0 4px rgba(126,214,255,.22);
}
.checkbox{
  display:flex; align-items:flex-start; gap:10px;
  margin: 12px 0 14px;
  font-weight:600;
}
.checkbox input{margin-top:3px}
.form__hint{margin:10px 0 0; font-size:.86rem; opacity:.7}
.form__ok{margin:12px 0 0; font-weight:800; color:#0b6b2b}

/* Callout */
.callout{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,43,69,.72);
  backdrop-filter: blur(12px);
  padding: 24px;
  box-shadow: var(--shadow);
}
.callout__title{margin:0 0 12px}
.typewrap{
  display:flex; gap:10px; align-items:baseline;
  margin: 8px 0 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.typewrap__label{opacity:.9; font-weight:700}
.typewrap__number{
  font-weight:900;
  color: rgba(126,214,255,1);
  letter-spacing:.6px;
  min-height: 1.2em;
}

.callout__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

/* Info cards */
.info-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:16px;
}
.info-card{
  border-radius: var(--r);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  padding: 18px;
  box-shadow: var(--shadow);
}
.info-card__icon{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(126,214,255,.16);
  border:1px solid rgba(126,214,255,.22);
  margin-bottom:10px;
}
.info-card__icon svg{width:22px; height:22px; fill:#fff}
.info-card h4{margin:0 0 8px}
.info-card p{margin:6px 0; opacity:.92; line-height:1.5}
.map{
  margin-top:10px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
}
.map iframe{width:100%; height:220px; border:0}

.pay-grid{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top:10px}
.pay{
  text-align:center;
  padding:10px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  font-size:.92rem;
}

/* Franja */
.strip{
  background: rgba(126,214,255,.22);
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  padding: 16px 0;
}
.strip p{margin:0; text-align:center; font-weight:800; letter-spacing:.3px}

/* Footer */
.footer{
  padding: 26px 0 34px;
  background: rgba(6,21,33,.65);
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__inner{display:grid; gap:14px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__links a{
  padding:8px 10px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.footer__meta p{margin:6px 0; opacity:.9}
.footer__author{opacity:1; font-weight:800}

/* WhatsApp flotante */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:60;
  width:56px; height:56px; border-radius:18px;
  display:grid; place-items:center;
  background: #25D366;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.22);
}
.wa-float svg{width:32px; height:32px; fill:#fff}

/* Animaciones */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}
.spacer{height:22px}


/* Responsive */
@media (max-width: 920px){
  .hero__inner{grid-template-columns: 1fr; }
  .grid-2{grid-template-columns: 1fr}
  .info-3{grid-template-columns: 1fr}
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav__menu{
    position:absolute;
    right:4%; top:74px;
    width:min(320px, 92vw);
    flex-direction:column; align-items:stretch;
    padding:12px;
    border-radius: 18px;
    background: rgba(6,21,33,.92);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav__menu.is-open{display:flex}
  .nav__link{justify-content:center}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none}
  .carousel__slide{transition:none}
  .btn{transition:none}
}

.intro{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #04111c;
  display: grid;
  place-items: center;
}

.intro__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__skip{
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(6,21,33,.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
