:root{
  --bg: #0b0b10;
  --surface: rgba(255,255,255,.08);
  --surface-2: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --pink: #ff2e9a;
  --pink2: #ff77c8;
  --line: rgba(255,255,255,.16);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(255,46,154,.20), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,119,200,.16), transparent 55%),
    radial-gradient(1000px 700px at 50% 110%, rgba(130,255,214,.10), transparent 60%),
    var(--bg);
  color: var(--text);
}

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

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#fff; color:#000; border-radius:12px; z-index:9999;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 60;
  background: rgba(10,10,16,.68);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.topbar__left{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,46,154,.18);
  border: 1px solid rgba(255,46,154,.35);
  font-weight:700;
  letter-spacing:.02em;
  font-size:12px;
}
.muted{ color: var(--muted); }
.small{ font-size: 12.5px; }
.topbar__right{ display:flex; align-items:center; gap:10px; }
.topbar__link{
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.topbar__btn{
  padding:10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color:#0b0b10;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255,46,154,.25);
}

.header{
  position: sticky;
  top: 44px;
  z-index: 55;
  background: rgba(10,10,16,.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width: 240px; }
.brand__logo{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  padding: 4px;
}
.brand__name{ display:block; font-weight: 900; letter-spacing: .01em; }
.brand__tag{ display:block; font-size: 12.5px; color: var(--muted); margin-top: 1px; }

.nav{
  display:flex; align-items:center; gap: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.nav a{ padding: 10px 10px; border-radius: 12px; }
.nav a:hover{ background: rgba(255,255,255,.06); }
.nav__cta{
  background: rgba(255,46,154,.18);
  border: 1px solid rgba(255,46,154,.35);
}
.nav__cta:hover{ background: rgba(255,46,154,.24); }

.nav-toggle{
  display:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 10px 11px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.9);
  margin: 4px 0;
  border-radius: 2px;
}

.hero{
  position: relative;
  padding: 46px 0 28px;
  overflow: hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,11,16,.92), rgba(11,11,16,.56) 50%, rgba(11,11,16,.92)),
    radial-gradient(800px 500px at 12% 20%, rgba(255,46,154,.22), transparent 60%),
    url("../img/portada.jpg") center/cover no-repeat;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.02);
}
.hero__inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.hero__content{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
}
.hero__content::before{
  content:"";
  position:absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 30% 30%, rgba(255,46,154,.25), transparent 55%);
  filter: blur(0px);
  pointer-events:none;
  transform: translate(-30%, -25%);
  opacity:.85;
}
.hero__content > *{ position: relative; }

h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.accent{
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.5;
}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.badge{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.badge__icon{ font-size: 18px; }
.badge strong{ display:block; font-size: 13.5px; }
.badge span{ display:block; font-size: 12.5px; color: var(--muted2); margin-top: 2px; }

.hero__actions{ display:flex; gap:10px; flex-wrap: wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn--primary{
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color:#0b0b10;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 16px 34px rgba(255,46,154,.24);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn--ghost:hover{ background: rgba(255,255,255,.09); }
.hero__note{ margin: 14px 0 0; color: var(--muted2); font-size: 12.5px; }

.hero__card{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 18px;
}
.h3{ margin: 0 0 12px; font-size: 18px; }
.checklist{
  list-style:none;
  padding:0; margin:0 0 16px;
}
.checklist li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.4;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 6px;
  display:grid; place-items:center;
  background: rgba(255,46,154,.18);
  border: 1px solid rgba(255,46,154,.35);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}
.hero__mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini{
  padding: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.mini__kpi{
  display:block;
  font-weight: 1000;
  font-size: 22px;
}
.mini__label{
  display:block;
  color: var(--muted2);
  margin-top: 4px;
  font-size: 12.5px;
}

.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.section__head h2{
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
}
.section__head p{ margin:0; }

.input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
}
.input:focus{ border-color: rgba(255,46,154,.55); box-shadow: 0 0 0 4px rgba(255,46,154,.12); }

.gallery__controls{ min-width: 260px; }
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.gallery__item{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  cursor: zoom-in;
  transform: translateZ(0);
}
.gallery__item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery__item:hover img{ transform: scale(1.04); }

.notice{
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,46,154,.10);
  border: 1px solid rgba(255,46,154,.28);
  color: rgba(255,255,255,.9);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.step{
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.step__num{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #0b0b10;
  font-weight: 1000;
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 8px; }
.step p{ margin: 0; color: var(--muted); line-height: 1.55; }

.cta-strip{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 22px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
}
.cta-strip__actions{ display:flex; gap: 10px; flex-wrap:wrap; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.card{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.card h3{ margin: 0 0 10px; }
.bullets{ margin:0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 8px 0; }

.socials{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 12px;
}
.socials__card{
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.ig-note{ margin-top: 10px; font-size: 12.5px; color: var(--muted2); }

.video{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.video iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display:block;
}

.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.contact__card{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.form{ display:flex; flex-direction:column; gap: 12px; }
label{ display:block; font-weight: 700; font-size: 13.5px; color: rgba(255,255,255,.86); }
label .input{ margin-top: 6px; font-weight: 500; }
textarea.input{ resize: vertical; min-height: 120px; }
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form__actions{ display:flex; gap: 10px; flex-wrap:wrap; align-items:center; }

.contact__quick{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quick{
  display:flex; gap: 10px; align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.quick__icon{
  width: 40px; height: 40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,46,154,.16);
  border: 1px solid rgba(255,46,154,.28);
  font-size: 18px;
}
.quick strong{ font-size: 13.5px; }
.map{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.map iframe{ width:100%; height: 320px; border:0; display:block; }
.contact__hours{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hours{
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}
.hours span{ display:block; margin-top: 4px; }

.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 0;
}
.footer__brand{ display:flex; align-items:center; gap:12px; }
.footer__brand img{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  padding: 4px;
}
.footer__links{
  display:flex; flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-end;
  color: var(--muted);
  font-weight: 700;
}
.footer__links a{ padding: 8px 10px; border-radius: 12px; }
.footer__links a:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }

.footer__bottom{
  padding: 12px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer__bottom p{ margin: 8px 0; }

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.82);
  display:none;
  place-items:center;
  padding: 22px;
}
.lightbox.is-open{ display:grid; }
.lightbox__img{
  max-width: min(980px, 100%);
  max-height: 78vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  background: #111;
}
.lightbox__caption{
  margin-top: 10px;
  color: rgba(255,255,255,.86);
  text-align:center;
  font-weight: 600;
}
.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 18px;
  cursor:pointer;
}

.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 22px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, #25d366, #1fb155);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  z-index: 80;
}
.fab svg{ width: 30px; height: 30px; fill: #0b0b10; }

@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .socials{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .cta-strip{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px){
  .topbar__right{ display:none; }
  .header{ top: 44px; }
  .nav-toggle{ display:block; }
  .nav{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display:none;
    flex-direction: column;
    padding: 12px;
    background: rgba(10,10,16,.92);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    margin: 0 20px 12px;
  }
  .nav.is-open{ display:flex; }
  .nav a{ width: 100%; }
  .hero__badges{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid2{ grid-template-columns: 1fr; }
  .footer__inner{ flex-direction: column; }
  .footer__links{ justify-content:flex-start; }
}
