:root{
  --bg: #f6f8ff;
  --card: rgba(255,255,255,.72);
  --card2: rgba(255,255,255,.58);
  --text: #0f172a;
  --muted: rgba(15,23,42,.68);
  --line: rgba(15,23,42,.12);

  --blue: #2563eb;
  --cyan: #06b6d4;
  --violet:#7c3aed;

  --shadow: 0 18px 50px rgba(15,23,42,.12);
  --shadow2: 0 10px 25px rgba(15,23,42,.10);

  --r: 18px;
  --r2: 26px;

  --speed: 700ms;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
p{ margin:0; color:var(--muted); line-height:1.6; }
h1,h2,h3{ margin:0; letter-spacing:-0.02em; }
strong{ color:var(--text); }

.skip{
  position:absolute; left:-999px; top:8px;
  background:#fff; padding:8px 12px; border-radius:12px;
}
.skip:focus{ left:12px; z-index:20; }

.container{
  width:min(1120px, calc(100% - 44px));
  margin:0 auto;
}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(246,248,255,.68);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.topbar--lite{ background:rgba(246,248,255,.50); }

.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  padding:6px 10px; border-radius:999px;
}
.brand:hover{ background:rgba(255,255,255,.55); box-shadow:0 1px 0 rgba(15,23,42,.05); }
.brand__logo{
  width:38px; height:38px; display:grid; place-items:center;
}
.brand__logo img{ width:38px; height:38px; display:block; }
.brand__name{ font-weight:800; }
.brand__pill{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background:rgba(37,99,235,.08);
  color:rgba(37,99,235,.92);
  border:1px solid rgba(37,99,235,.10);
}

.nav{
  display:flex; gap:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(15,23,42,.06);
}
.nav__link{
  font-size:14px; color:rgba(15,23,42,.74);
  padding:8px 10px; border-radius:10px;
  transition: transform 200ms ease, background 200ms ease;
}
.nav__link:hover{
  background:rgba(37,99,235,.08);
  transform: translateY(-1px);
}

.topbar__actions{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.55);
  box-shadow:0 1px 0 rgba(15,23,42,.06);
  font-weight:700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  border:1px solid rgba(37,99,235,.24);
  background: linear-gradient(135deg, rgba(37,99,235,.98), rgba(6,182,212,.92));
  color:white;
  box-shadow: 0 16px 35px rgba(37,99,235,.22);
  position:relative;
  overflow:hidden;
}
.btn--primary::after{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 55%);
  transform: rotate(20deg);
  opacity:.65;
}
.btn--primary:hover{ box-shadow:0 22px 55px rgba(37,99,235,.26); }
.btn--ghost{
  background:transparent;
  border:1px solid rgba(15,23,42,.12);
}
.btn--soft{
  border:1px solid rgba(37,99,235,.18);
  background: rgba(37,99,235,.08);
  color: rgba(37,99,235,.92);
}
.btn--xl{ padding:14px 18px; font-size:15px; }
.btn--block{ width:100%; padding:14px 16px; }
.btn__arrow{ font-weight:900; }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.55);
  padding:10px;
}
.burger span{
  display:block; height:2px; background:rgba(15,23,42,.75);
  margin:6px 0; border-radius:2px;
}

.mobile{
  display:none;
  padding:0 22px 16px;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.mobile a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:rgba(15,23,42,.82);
}
.mobile a:hover{ background:rgba(37,99,235,.08); }
.mobile__cta{
  margin-top:6px;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.16);
}

.page{ min-height:100%; }

.hero{
  position:relative;
  padding:56px 0 40px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
  position:relative;
  z-index:2;
}

.bg{
  position:absolute; inset:0;
  pointer-events:none;
  overflow:hidden;
}
.bg__grid{
  position:absolute; inset:-40px;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity:.45;
  mask-image: radial-gradient(circle at 40% 40%, black 0%, transparent 58%);
}
.bg__noise{
  position:absolute; inset:-20%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity:.20;
  transform: translateZ(0);
}
.bg__glow{
  position:absolute;
  width:680px; height:680px;
  border-radius:50%;
  filter: blur(60px);
  opacity:.55;
  animation: float 9s ease-in-out infinite;
}
.bg__glow--a{
  left:-140px; top:-180px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.62), transparent 58%);
}
.bg__glow--b{
  right:-220px; top:-120px;
  background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.55), transparent 60%);
  animation-duration: 11s;
}
.bg__glow--c{
  left:20%; bottom:-280px;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.36), transparent 62%);
  animation-duration: 13s;
}

@keyframes float{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(20px, -18px); }
}

.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.16);
  color: rgba(37,99,235,.95);
  font-weight:800;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(37,99,235,.10);
}
.chip__spark{
  width:26px; height:26px;
  border-radius:9px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(37,99,235,.12);
}

.hero__title{
  margin-top:16px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.02;
  font-weight:900;
}
.grad{
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color:transparent;
}
.grad--blue{
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.grad--cyan{
  background: linear-gradient(135deg, #06b6d4, #22c55e);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.hero__text{ margin-top:14px; font-size:16px; max-width: 52ch; }
.hero__ctas{ display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }

.badges{ display:flex; gap:12px; margin-top:20px; flex-wrap:wrap; }
.badge{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.badge strong{ font-size:13px; }
.badge span{ font-size:12px; color:rgba(15,23,42,.60); }

.dot{ width:9px; height:9px; border-radius:50%; }
.dot--green{ background:#22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.12); }

.preview{
  position:relative;
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.52));
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform-style:preserve-3d;
}
.preview__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.35);
}
.preview__meta{ font-size:12px; color:rgba(15,23,42,.62); font-weight:700; }
.dots{ display:flex; gap:8px; }
.d{ width:10px; height:10px; border-radius:50%; }
.d--red{ background:#fb7185; }
.d--yellow{ background:#fbbf24; }
.d--green{ background:#34d399; }

.preview__body{ padding:16px; display:flex; flex-direction:column; gap:12px; }
.rowcard{
  display:flex; align-items:center; gap:12px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.62);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.rowcard:hover{ transform: translateY(-2px); box-shadow: 0 20px 46px rgba(15,23,42,.10); }
.rowcard__icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.12);
}
.rowcard__title{ font-weight:900; font-size:14px; }
.rowcard__sub{ font-size:12px; color:rgba(15,23,42,.60); margin-top:2px; }

.pill{
  margin-left:auto;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.08);
  font-weight:900;
}
.pill--ok{ background: rgba(34,197,94,.12); color: rgba(22,163,74,.95); border-color: rgba(34,197,94,.20); }
.pill--info{ background: rgba(37,99,235,.10); color: rgba(37,99,235,.95); border-color: rgba(37,99,235,.18); }
.pill--warn{ background: rgba(251,191,36,.14); color: rgba(161,98,7,.95); border-color: rgba(251,191,36,.22); }
.pill--violet{ background: rgba(124,58,237,.12); color: rgba(124,58,237,.95); border-color: rgba(124,58,237,.22); }

.progress{
  margin-top:4px;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(15,23,42,.08);
}
.progress__top{ display:flex; justify-content:space-between; font-size:12px; color:rgba(15,23,42,.62); font-weight:800; }
.progress__label{ color:#16a34a; }
.bar{
  margin-top:10px;
  height:10px; border-radius:999px;
  background: rgba(15,23,42,.08);
  overflow:hidden;
}
.bar__fill{
  height:100%;
  width: var(--p, 70%);
  background: linear-gradient(90deg, rgba(37,99,235,.95), rgba(6,182,212,.92), rgba(34,197,94,.90));
  border-radius:999px;
  animation: load 1200ms ease both;
}
@keyframes load{ from{ width:0%; } to{ width: var(--p, 70%);} }

.note{
  padding:14px;
  border-radius:16px;
  background: rgba(6,182,212,.08);
  border:1px solid rgba(6,182,212,.18);
}
.note__title{ font-weight:900; font-size:13px; display:flex; align-items:center; gap:10px; }
.note__text{ margin-top:6px; font-size:13px; color:rgba(15,23,42,.68); }

.preview__sheen{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 55%);
  transform: rotate(18deg);
  opacity:.45;
  pointer-events:none;
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen{
  0%,100%{ transform: translateX(-8%) rotate(18deg); opacity:.38; }
  50%{ transform: translateX(8%) rotate(18deg); opacity:.55; }
}

.section{ padding:56px 0; position:relative; }
.section--alt{
  background: rgba(255,255,255,.35);
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.section__head h2{ font-size:28px; font-weight:950; }
.section__head p{ margin-top:8px; max-width: 70ch; }

.grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--r);
  background: rgba(255,255,255,.62);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 22px 60px rgba(15,23,42,.12); }
.card__icon{
  width:46px; height:46px; border-radius:16px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.12);
}
.card h3{ margin-top:14px; font-size:16px; font-weight:950; }
.card p{ margin-top:8px; font-size:13px; }

.steps{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.step{
  display:flex; gap:14px;
  padding:18px;
  border-radius: var(--r);
  background: rgba(255,255,255,.60);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.step__num{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:950;
  color: rgba(37,99,235,.95);
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.14);
}
.step__body h3{ font-size:16px; font-weight:950; }
.step__body p{ margin-top:6px; font-size:13px; }

.tech{
  margin-top:18px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.tag{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.60);
  border:1px solid rgba(15,23,42,.08);
  font-weight:900;
  color: rgba(15,23,42,.75);
}

.faq{ margin-top:18px; display:grid; gap:10px; }
.qa{
  border-radius: var(--r);
  background: rgba(255,255,255,.60);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(15,23,42,.07);
  padding:14px 16px;
}
.qa summary{
  cursor:pointer;
  font-weight:950;
  list-style:none;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa p{ margin-top:10px; font-size:13px; }

.cta{
  margin-top:18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:18px;
  border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(6,182,212,.08));
  border:1px solid rgba(37,99,235,.14);
  box-shadow: 0 18px 55px rgba(37,99,235,.12);
}
.cta__txt h3{ font-weight:950; }
.cta__txt p{ margin-top:6px; font-size:13px; }

.footer{
  padding:26px 0;
  border-top:1px solid rgba(15,23,42,.06);
}
.footer__inner{ display:flex; align-items:center; justify-content:space-between; }
.muted{ color:rgba(15,23,42,.60); }

.i{ width:18px; height:18px; fill: currentColor; }
.i--muted{ color:rgba(15,23,42,.55); }
.i--btn{ color:white; }
.i--big{ width:26px; height:26px; }
.i--mini{ width:16px; height:16px; color:rgba(15,23,42,.65); }

.reveal{
  opacity:0;
  transform: translateY(10px) scale(.99);
  transition: opacity var(--speed) ease, transform var(--speed) ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0) scale(1);
}

.login .topbar{ position:fixed; width:100%; }
.login__main{
  position:relative;
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:96px 0 40px;
}
.auth{
  width:min(520px, calc(100% - 44px));
  background: rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding:26px;
  position:relative;
  overflow:hidden;
}
.auth__icon{
  width:56px; height:56px;
  border-radius:18px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.14);
}
.auth__title{
  margin-top:14px;
  font-size:26px;
  font-weight:950;
}
.auth__sub{ margin-top:8px; font-size:14px; }

.form{ margin-top:18px; display:grid; gap:14px; }
.field__label{ font-weight:900; font-size:12px; color:rgba(15,23,42,.70); }
.field__wrap{
  margin-top:8px;
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.58);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.field__wrap:focus-within{
  border-color: rgba(37,99,235,.32);
  box-shadow: 0 18px 40px rgba(37,99,235,.12);
  transform: translateY(-1px);
}
.field input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  font-size:14px;
  color:rgba(15,23,42,.90);
}
.field__hint{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:rgba(15,23,42,.55);
}
.eye{
  border:0;
  background:transparent;
  width:38px; height:38px;
  border-radius:12px;
  display:grid; place-items:center;
  cursor:pointer;
  color:rgba(15,23,42,.68);
}
.eye:hover{ background: rgba(37,99,235,.08); color:rgba(37,99,235,.92); }

.form__msg{
  min-height:20px;
  font-size:13px;
  font-weight:800;
  color: rgba(15,23,42,.70);
}
.form__msg.ok{ color: rgba(22,163,74,.95); }
.form__msg.bad{ color: rgba(225,29,72,.95); }

.auth__foot{
  display:flex; justify-content:space-between; gap:10px;
  margin-top:10px;
  padding-top:14px;
  border-top:1px solid rgba(15,23,42,.08);
}
.mini{ display:inline-flex; gap:8px; align-items:center; font-size:12px; color:rgba(15,23,42,.62); font-weight:800; }

.auth__sheen{
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 25% 15%, rgba(255,255,255,.55), transparent 58%);
  transform: rotate(18deg);
  opacity:.45;
  pointer-events:none;
  animation: sheen 7s ease-in-out infinite;
}

@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .topbar__actions{ display:none; }
  .mobile{ display:block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .preview{ max-width: 680px; margin:0 auto; }
  .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:1ms !important; transition-duration:1ms !important; }
}

/* Reservations / Forms */
.field select {
  width:100%; border:0; outline:0; background:transparent; font-size:14px;
  color:rgba(15,23,42,.90);
  cursor:pointer; appearance:none;
}
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.reservas-section {
  display:block;
  margin-top:24px; padding-top:10px;
  border-top:1px solid rgba(15,23,42,.08);
}
.reservas-title { font-size:13px; font-weight:800; margin-bottom:12px; color:rgba(15,23,42,.62); }
.reservas-list { list-style:none; padding:0; margin:0; }
.reservas-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
  font-size:13px; color:rgba(15,23,42,.70);
}
.reservas-item strong { color:var(--text); font-weight:700; }
.reservas-item:last-child { border-bottom:0; }
