:root{
  --bg:#3c4147;
  --panel:#343b43;
  --panel2:#2c333b;
  --text:#efeff1;
  --muted:rgba(239,239,241,.74);
  --line:rgba(255,255,255,.08);
  --shadow:0 22px 70px rgba(0,0,0,.55);
  --shadow2:0 14px 32px rgba(0,0,0,.35);
  --radius:20px;
  --radius2:14px;
  --accent:#107205;
  --accent2:#ff8504;
  --highlight:#dffd4f;
  --brand-dark:#3c4147;
  --brand-slate:#3c4147;
  --brand-light:#efeff1;
  --warning:#fee650;
  --danger:#c7c7c7;
  --max:1120px;
  --ease:cubic-bezier(.2,.8,.2,1);

  --accent-rgb:16,114,5;
  --accent2-rgb:255,133,4;
  --warning-rgb:254,230,80;
  --highlight-rgb:223,253,79;
  --brand-rgb:60,65,71;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(var(--accent-rgb), .18), transparent 60%),
    radial-gradient(900px 620px at 10% 20%, rgba(var(--accent2-rgb), .16), transparent 62%),
    radial-gradient(820px 540px at 50% 120%, rgba(var(--highlight-rgb), .10), transparent 60%),
    linear-gradient(180deg, #1a1f25, var(--bg));
}

a{color:inherit;text-decoration:none}
button,input,select{font:inherit;color:inherit}

.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;
}

.skip-link{
  position:absolute;
  left:16px;top:16px;
  transform:translateY(-180%);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  backdrop-filter:blur(14px);
  z-index:9999;
}
.skip-link:focus{transform:translateY(0)}

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

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  color:var(--brand-dark);
  border-bottom:1px solid rgba(0,0,0,.08);
  backdrop-filter:blur(16px) saturate(1.2);
  transition:background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header[data-elevate="true"]{
  background:rgba(255,255,255,.96);
  border-color:rgba(0,0,0,.10);
  box-shadow:0 12px 40px rgba(0,0,0,.14);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-mark{
  width:14px;height:14px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 45%),
    linear-gradient(180deg, var(--accent), var(--highlight));
  box-shadow:0 0 0 6px rgba(var(--accent-rgb), .14);
}
.brand-logo{
  height:64px;
  width:auto;
  object-fit:contain;
  display:block;
  filter:
    drop-shadow(0 0 3px rgba(0,0,0,.55))
    drop-shadow(0 10px 18px rgba(0,0,0,.18));
}
.brand-name{
  font-weight:800;
  letter-spacing:.10em;
  font-size:14px;
  display:none;
}

.nav{display:flex;align-items:center;gap:14px}
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  padding:10px 10px;
  color:currentColor;
}
.nav-toggle-lines{
  display:block;
  width:18px;height:12px;
  background:
    linear-gradient(currentColor,currentColor) 0 0/100% 2px,
    linear-gradient(currentColor,currentColor) 0 50%/100% 2px,
    linear-gradient(currentColor,currentColor) 0 100%/100% 2px;
  background-repeat:no-repeat;
  opacity:.95;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-link{
  font-weight:700;
  color:rgba(60,65,71,.92);
  padding:11px 14px;
  border-radius:12px;
  transition:background .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover{background:rgba(0,0,0,.06);color:rgba(60,65,71,1)}
.nav-link.is-active{
  background:rgba(var(--accent-rgb), .10);
  color:rgba(var(--accent-rgb), 1);
  box-shadow:inset 0 0 0 1px rgba(var(--accent-rgb), .18);
}
.nav-admin-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(60,65,71,.14);
  background:rgba(0,0,0,.03);
  color:rgba(60,65,71,.78);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.nav-admin-link:hover{
  background:rgba(0,0,0,.06);
  color:rgba(60,65,71,1);
  border-color:rgba(60,65,71,.22);
  transform:translateY(-1px);
}
.nav-admin-link.is-active{
  background:rgba(var(--accent-rgb), .10);
  color:rgba(var(--accent-rgb), 1);
  border-color:rgba(var(--accent-rgb), .20);
}

.site-header .btn:not(.btn-primary):not(.btn-ghost){
  border-color:rgba(0,0,0,.12);
  background:rgba(0,0,0,.03);
  color:rgba(60,65,71,.96);
}
.btn-ic{width:18px;height:18px;flex:0 0 auto}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:11px 14px;
  min-height:48px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition:transform .15s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  user-select:none;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.26)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:2px solid rgba(var(--accent-rgb), .70);outline-offset:2px}

.btn-primary{
  background:rgba(var(--accent-rgb), 1);
  border-color:rgba(0,0,0,.12);
  color:#fff;
  box-shadow:0 14px 36px rgba(var(--accent-rgb), .22);
}
.btn-primary:hover{
  background:rgba(13,98,4,1);
  border-color:rgba(0,0,0,.16);
  box-shadow:0 18px 42px rgba(var(--accent-rgb), .28);
}
.btn-ghost{
  background:rgba(255,255,255,.92);
  border-color:rgba(60,65,71,.14);
  color:#334155;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.btn-ghost:hover{
  background:#fff;
  border-color:rgba(60,65,71,.22);
  color:#1f2937;
}
.hero .btn-ghost,
.footer .btn-ghost,
.modal .btn-ghost,
.panel .btn-ghost,
.trace-panel .btn-ghost{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
  color:#fff;
  box-shadow:none;
}
.hero .btn-ghost:hover,
.footer .btn-ghost:hover,
.modal .btn-ghost:hover,
.panel .btn-ghost:hover,
.trace-panel .btn-ghost:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.30);
}
.btn-reservar{
  min-height:52px;
  padding:14px 18px;
  border-radius:18px;
  box-shadow:0 16px 34px rgba(var(--accent-rgb), .20);
}
.btn-lg{padding:14px 16px;border-radius:16px}
.btn-block{width:100%}

.home-sections{
  position:relative;
  padding:86px 0 62px;
  color:#3c4147;
}
.home-sections::before{
  content:"";
  position:absolute;
  inset:-36px 0 0 0;
  background:#fff;
  border-radius:34px 34px 0 0;
  box-shadow:0 -18px 46px rgba(0,0,0,.18);
}
.home-sections .container{position:relative;z-index:1}
.home-sections .section-title{color:#3c4147}
.home-sections .section-subtitle{color:rgba(60,65,71,.74)}
.home-sections .key-points{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin:0 0 18px;
}
.home-sections .key-point{
  border-radius:20px;
  border:1px solid rgba(60,65,71,.14);
  background:rgba(255,255,255,.92);
  box-shadow:0 16px 44px rgba(0,0,0,.08);
  padding:12px 12px;
  color:rgba(60,65,71,.92);
  font-weight:800;
  line-height:1.35;
}
.home-sections .key-point::before{
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  margin-right:10px;
  border-radius:999px;
  background:rgba(var(--accent-rgb), 1);
  box-shadow:0 0 0 5px rgba(var(--accent-rgb), .12);
  vertical-align:middle;
}
.home-sections .card{
  border-color:rgba(60,65,71,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,251,252,.92));
  box-shadow:0 18px 60px rgba(0,0,0,.10);
}
.home-sections .card:hover{border-color:rgba(var(--accent2-rgb), .40);background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,250,251,.98))}
.home-sections .card-media{height:156px}
.home-sections .card-body{padding:18px 18px 20px}
.home-sections .card-kicker{color:rgba(60,65,71,.72)}
.home-sections .card-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  color:rgba(60,65,71,.74);
}
.home-sections .card-list li{
  position:relative;
  padding-left:16px;
}
.home-sections .card-list li + li{margin-top:8px}
.home-sections .card-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(var(--accent-rgb), 1);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb), .12);
}
.home-sections .card-actions{margin-top:18px}
.home-sections .card-actions .btn{padding:10px 12px;border-radius:14px}
.home-sections .cards{grid-template-columns:repeat(3, minmax(0, 1fr))}

@media (max-width: 920px){
  .home-sections .key-points{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

.home-benefits{
  position:relative;
  background:transparent;
  padding:62px 0 74px;
  color:#3c4147;
}
.home-benefits::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, #f3f5f6, #fff);
  border-top:1px solid rgba(60,65,71,.10);
}
.home-benefits .container{position:relative;z-index:1}
.home-benefits .section-title{color:#3c4147}
.home-benefits .section-subtitle{color:rgba(60,65,71,.74)}
.home-benefits .section-head{
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.home-benefits .section-subtitle{text-align:center}
.home-benefits .benefits{justify-items:center}
.home-benefits .benefit-title{color:#3c4147}
.home-benefits .benefit{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  border-color:rgba(60,65,71,.14);
  background:rgba(255,255,255,.88);
  box-shadow:0 14px 44px rgba(0,0,0,.08);
}
.home-benefits .benefit-text{color:rgba(60,65,71,.72)}
.home-benefits .benefit-icon{
  width:258px;
  height:258px;
  border-radius:70px;
  border:1px solid rgba(60,65,71,.12);
  background:rgba(255,255,255,.92);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.16);
}
.home-benefits .benefit-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(2);
  filter:saturate(1.06) contrast(1.04);
  transition:transform .25s var(--ease), filter .25s var(--ease);
}
.home-benefits .benefit:hover .benefit-img{
  transform:scale(2.08);
  filter:saturate(1.12) contrast(1.08);
}

@media (max-width: 420px){
  .home-benefits .benefit-icon{width:222px;height:222px;border-radius:62px}
}

@media (max-width: 960px){
  .hero-copy::before{inset:-18px -18px -18px -18px}
}

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 76px;
}
.hero-bg{
  position:absolute;
  inset:-40px -10px -140px -10px;
  background:
    radial-gradient(1100px 520px at 70% 35%, rgba(var(--accent-rgb), .18), transparent 60%),
    radial-gradient(900px 560px at 25% 25%, rgba(var(--accent2-rgb), .18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.80)),
    url("../img/imgslider.jpg");
  background-size:cover;
  background-position:center;
  filter:saturate(1.1) contrast(1.05);
  transform:scale(1.02);
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  mask-image:linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}

.hero-copy{
  position:relative;
  padding:22px 0;
}
.hero-copy::before{
  content:"";
  position:absolute;
  inset:-22px -44px -22px -22px;
  border-radius:34px;
  background:linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,0) 100%);
  z-index:0;
  pointer-events:none;
}
.hero-copy > *{position:relative;z-index:1}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:8px 12px;
  backdrop-filter:blur(14px);
  color:rgba(239,239,241,.92);
  font-weight:600;
}
.pill .dot{
  width:8px;height:8px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(var(--accent-rgb), .18);
  animation:whatsappBlink 1.25s var(--ease) infinite;
}

@keyframes whatsappBlink{
  0%, 55%, 100%{opacity:1;transform:scale(1);box-shadow:0 0 0 5px rgba(var(--accent-rgb), .18), 0 0 0 0 rgba(var(--accent-rgb), 0)}
  65%{opacity:.22;transform:scale(.72);box-shadow:0 0 0 2px rgba(var(--accent-rgb), .10), 0 0 0 10px rgba(var(--accent-rgb), .18)}
}

@media (prefers-reduced-motion: reduce){
  .pill .dot{animation:none}
}

.hero-title{
  margin:16px 0 0;
  font-size:54px;
  line-height:1;
  letter-spacing:.06em;
  font-weight:900;
}
.hero-subtitle{
  margin:10px 0 0;
  font-size:22px;
  font-weight:700;
  color:rgba(239,239,241,.92);
}
.hero-text{
  margin:12px 0 0;
  color:rgba(239,239,241,.76);
  font-size:16px;
  line-height:1.6;
  max-width:58ch;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.hero-contact{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:14px;
}
.hero-contact-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(239,239,241,.88);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:color .18s;
}
.hero-contact-item:hover{color:#fff}
.hero-contact-item svg{
  width:16px;height:16px;
  flex-shrink:0;
  opacity:.80;
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:26px;
}
.metric{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:14px 14px;
  backdrop-filter:blur(14px);
}
.metric-value{font-weight:900;letter-spacing:.02em}
.metric-label{margin-top:4px;color:rgba(239,239,241,.70);font-size:12px}

.hero-card{
  background:rgba(19,31,31,.62);
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
  padding:18px;
}
.hero-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.hero-card-title{font-weight:900;letter-spacing:.02em}
.hero-card-sub{margin-top:4px;color:rgba(239,239,241,.68);font-size:13px;line-height:1.4}
.badge-live{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(var(--accent-rgb), .30);
  background:rgba(var(--accent-rgb), .10);
  color:rgba(239,239,241,.92);
  font-weight:700;
  font-size:12px;
}
.badge-live .pulse{
  width:8px;height:8px;border-radius:999px;background:var(--accent);
  box-shadow:0 0 0 0 rgba(var(--accent-rgb), .45);
  animation:pulse 1.6s var(--ease) infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(var(--accent-rgb), .38)}
  70%{box-shadow:0 0 0 10px rgba(var(--accent-rgb), 0)}
  100%{box-shadow:0 0 0 0 rgba(var(--accent-rgb), 0)}
}

.quick{margin-top:16px;display:grid;gap:12px}
.quick-hint{color:rgba(239,239,241,.62);font-size:12px;line-height:1.4}

.section{
  padding:62px 0;
  position:relative;
}
.section-alt{
  background:transparent;
  border-top:0;
  border-bottom:0;
}
.section-band-light{
  background:linear-gradient(180deg, rgba(245,247,248,.96), rgba(255,255,255,.98));
}
.section-band-dark{
  background:linear-gradient(180deg, rgba(43,49,57,.92), rgba(33,39,46,.96));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
  flex-wrap:wrap;
}
.section-title{
  margin:0;
  font-size:28px;
  font-weight:900;
  letter-spacing:.02em;
}
.section-head-spaced{
  margin-top:34px;
}
.section-subtitle{
  margin:0;
  color:rgba(239,239,241,.70);
  max-width:64ch;
  line-height:1.55;
  overflow-wrap:anywhere;
  min-width:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.card{
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow2);
  transition:transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(var(--accent2-rgb), .32);
  background:rgba(255,255,255,.08);
}
.section-band-light .section-title,
.section-band-light .section-subtitle,
.section-band-light .card-kicker,
.section-band-light .card-title,
.section-band-light .card-list,
.section-band-light .field-label,
.section-band-light .booking-grid-note,
.section-band-light .summary-sub,
.section-band-light .info-kicker,
.section-band-light .info-title,
.section-band-light .info-text,
.section-band-light .info-list,
.section-band-light .step-title,
.section-band-light .step-text,
.section-band-light .faq-item summary,
.section-band-light .faq-item p{
  color:#334155;
}
.section-band-light .section-title{color:#25313c}
.section-band-light .section-subtitle{color:rgba(51,65,85,.78)}
.section-band-light .card{
  border-color:rgba(60,65,71,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,250,251,.96));
  box-shadow:0 18px 50px rgba(15,23,42,.10);
}
.section-band-light .card:hover{
  border-color:rgba(var(--accent-rgb), .26);
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,1));
}
.section-band-light .card-list{color:rgba(51,65,85,.82)}
.section-band-light .card-list .price-info{color:#166534;font-weight:700}
.section-band-light .card-kicker{color:rgba(51,65,85,.68)}
.section-band-light .pill-tag{
  background:rgba(var(--accent-rgb), .08);
  border-color:rgba(var(--accent-rgb), .14);
  color:#166534;
}
.section-band-light .control,
.section-band-light .booking-summary,
.section-band-light .booking-grid-wrap,
.section-band-light .segmented,
.section-band-light .legend-item,
.section-band-light .stat{
  color:#334155;
  border-color:rgba(60,65,71,.14);
  background:rgba(255,255,255,.92);
}
.section-band-light .segmented-btn{color:#475569}
.section-band-light .segmented-btn:hover{background:rgba(15,23,42,.05)}
.section-band-light .summary-title,
.section-band-light .booking-grid-title,
.section-band-light .stat-value{
  color:#25313c;
}
.section-band-light .stat-label{color:rgba(51,65,85,.68)}
.section-band-light .control:focus{
  background:#fff;
}
.section-band-light .control::-webkit-calendar-picker-indicator{filter:none;opacity:.8}
.card-media{
  height:170px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.card-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
}
.media-fulbito{
  background-image:url("../img/futbol.jpg");
}
.media-voley{
  background-image:url("../img/voley.jpg");
}
.media-espacios{
  background-image:url("../img/espaciosrecreativos.png");
}
.card-body{padding:18px}
.card-kicker{
  color:rgba(239,239,241,.70);
  font-weight:700;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.card-title{margin:8px 0 0;font-weight:900;font-size:20px}
.card-list{
  margin:12px 0 0;
  padding:0 0 0 16px;
  color:rgba(239,239,241,.75);
  line-height:1.55;
}
.card-list .price-info{
  font-weight:700;
  color:var(--highlight);
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.booking{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.booking-controls{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.control-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:12px;
  align-items:end;
}
.field{display:grid;gap:8px}
.field-label{
  color:rgba(239,239,241,.72);
  font-weight:700;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.control{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  padding:12px 12px;
  color:var(--text);
  outline:none;
  transition:border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.control option,
.control optgroup{
  color:#000;
  background:#fff;
}
.control:focus{
  border-color:rgba(var(--accent-rgb), .55);
  background:rgba(255,255,255,.14);
}
.control::-webkit-calendar-picker-indicator{filter:invert(1);opacity:.85}

.segmented{
  display:flex;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  padding:4px;
  gap:6px;
}
.segmented-btn{
  flex:1;
  border:0;
  padding:10px 10px;
  border-radius:12px;
  background:transparent;
  color:rgba(239,239,241,.82);
  font-weight:800;
  cursor:pointer;
  transition:background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.segmented-btn:hover{background:rgba(255,255,255,.10)}
.segmented-btn.is-active{
  background:linear-gradient(135deg, rgba(var(--accent-rgb), .98), rgba(var(--accent2-rgb), .98));
  color:#0b1414;
}
.legend{display:flex;gap:10px;flex-wrap:wrap}
.legend-item{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  font-weight:800;font-size:12px;
}
.status-dot{
  width:10px;height:10px;border-radius:999px;
  background:rgba(255,255,255,.25);
}
.status.available .status-dot{background:var(--accent)}
.status.limited .status-dot{background:var(--warning)}
.status.booked .status-dot{background:#8b8b8b}
.status.past .status-dot{background:#6b7280}

.booking-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  padding:16px;
}
.summary-title{font-weight:900;letter-spacing:.02em}
.summary-sub{margin-top:4px;color:rgba(239,239,241,.68)}
.summary-stats{display:flex;gap:12px;flex-wrap:wrap}
.stat{
  min-width:120px;
  border-radius:18px;
  padding:12px 12px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.10);
}
.stat-value{font-weight:900;font-size:18px}
.stat-label{margin-top:4px;color:rgba(239,239,241,.65);font-size:12px}

.booking-grid-wrap{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  padding:16px;
}
.booking-grid-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.booking-grid-title{margin:0;font-size:18px;font-weight:900}
.booking-grid-note{
  color:rgba(239,239,241,.62);
  font-size:12px;
  max-width:68ch;
  text-align:right;
  overflow-wrap:anywhere;
  min-width:0;
}
.summary-price{
  margin-top:8px;
  color:rgba(239,239,241,.78);
  font-weight:700;
}
.summary-promotion{
  margin-top:6px;
}
.promo-badge{
  display:inline-block;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.slots{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:10px;
}
.slot{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  padding:14px 14px;
  color:var(--text);
  min-height:92px;
  cursor:pointer;
  transition:transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
}
.slot:hover{transform:translateY(-1px);border-color:rgba(255,255,255,.22);background:rgba(0,0,0,.20)}
.slot:focus-visible{outline:2px solid rgba(var(--accent-rgb), .70);outline-offset:2px}
.slot-time{font-weight:950;letter-spacing:.02em;font-size:18px}
.slot-meta{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;width:100%}
.slot-status{
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.9;
}
.slot-chip{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-size:12px;
  font-weight:800;
  max-width:100%;
  line-height:1.25;
  text-align:center;
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}

.slot.available{
  background:linear-gradient(180deg, rgba(var(--accent-rgb), .16), rgba(0,0,0,.22));
  border-color:rgba(var(--accent-rgb), .28);
}
.slot.available .slot-chip{border-color:rgba(var(--accent-rgb), .32);background:rgba(var(--accent-rgb), .10)}
.slot.limited{
  background:linear-gradient(180deg, rgba(var(--warning-rgb), .22), rgba(0,0,0,.22));
  border-color:rgba(var(--warning-rgb), .32);
}
.slot.limited .slot-chip{border-color:rgba(var(--warning-rgb), .36);background:rgba(var(--warning-rgb), .14)}
.slot.booked{
  opacity:.72;
  cursor:not-allowed;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.25));
  border-color:rgba(255,255,255,.10);
}
.slot.booked:hover{transform:none}
.slot.past{
  opacity:.62;
  cursor:not-allowed;
  background:linear-gradient(180deg, rgba(107,114,128,.22), rgba(0,0,0,.25));
  border-color:rgba(148,163,184,.30);
}
.slot.past .slot-chip{
  border-color:rgba(148,163,184,.32);
  background:rgba(148,163,184,.16);
}
.slot.past:hover{transform:none}
.slot-empty{
  grid-column:1 / -1;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  padding:22px 18px;
  color:rgba(239,239,241,.72);
  text-align:center;
  font-weight:700;
}
.slot-promo-badge{
  position:absolute;
  top:6px;
  right:6px;
  background:linear-gradient(135deg, rgba(var(--accent-rgb),1), rgba(var(--accent2-rgb),.9));
  color:#fff;
  font-size:10px;
  font-weight:800;
  padding:3px 7px;
  border-radius:999px;
  letter-spacing:.03em;
  pointer-events:none;
  white-space:nowrap;
}

.panel{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  overflow:hidden;
}
.panel-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.panel-title{font-weight:900}
.panel-actions{display:flex;gap:10px}

.admin-section .container{
  width:min(1380px, calc(100% - 40px));
}
.table-wrap{overflow:auto}
.table{
  width:100%;
  border-collapse:collapse;
  min-width:1320px;
}
.table th,.table td{
  padding:12px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
  overflow-wrap:normal;
  word-break:normal;
}
.table th{white-space:nowrap}
.table td{white-space:nowrap}
.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(10),
.table td:nth-child(11),
.table td:nth-child(12){
  white-space:normal;
}
.table th:nth-child(1), .table td:nth-child(1){min-width:150px}
.table th:nth-child(2), .table td:nth-child(2){min-width:170px}
.table th:nth-child(3), .table td:nth-child(3){min-width:170px}
.table th:nth-child(4), .table td:nth-child(4){min-width:110px}
.table th:nth-child(5), .table td:nth-child(5){min-width:100px}
.table th:nth-child(6), .table td:nth-child(6){min-width:90px}
.table th:nth-child(7), .table td:nth-child(7){min-width:90px}
.table th:nth-child(8), .table td:nth-child(8){min-width:130px}
.table th:nth-child(9), .table td:nth-child(9){min-width:100px}
.table th:nth-child(10), .table td:nth-child(10){min-width:130px}
.table th:nth-child(11), .table td:nth-child(11){min-width:170px}
.table th:nth-child(12), .table td:nth-child(12){min-width:190px}
.table th{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(239,239,241,.70);
}
.table-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.table-note{
  max-width:220px;
  color:rgba(239,239,241,.76);
  line-height:1.45;
}
.muted{
  margin-top:4px;
  color:rgba(239,239,241,.62);
  font-size:12px;
}
.status-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  font-weight:900;
  font-size:12px;
}
.status-badge.confirmed,
.status-badge.confirmado{border-color:rgba(var(--accent-rgb), .32);background:rgba(var(--accent-rgb), .10)}
.status-badge.pending,
.status-badge.pendiente{border-color:rgba(var(--accent2-rgb), .30);background:rgba(var(--accent2-rgb), .10)}
.status-badge.cancelled,
.status-badge.cancelado,
.status-badge.cancelada{border-color:rgba(255,255,255,.20);background:rgba(255,255,255,.06)}
.status-badge.paid,
.status-badge.pagado,
.status-badge.pagada{border-color:rgba(var(--accent-rgb), .32);background:rgba(var(--accent-rgb), .10)}
.status-badge.deposit,
.status-badge.adelanto{border-color:rgba(var(--accent2-rgb), .30);background:rgba(var(--accent2-rgb), .10)}
.status-badge.unpaid,
.status-badge.no_pagado,
.status-badge.no_pagada{border-color:rgba(255,255,255,.20);background:rgba(255,255,255,.06)}

.benefits{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.benefit{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:16px;
  box-shadow:var(--shadow2);
  transition:transform .2s var(--ease), border-color .2s var(--ease);
}
.benefit:hover{transform:translateY(-2px);border-color:rgba(var(--accent2-rgb), .32)}
.benefit-icon{
  width:44px;height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  display:grid;
  place-items:center;
}
.benefit-title{margin:12px 0 0;font-weight:900}
.benefit-text{margin:8px 0 0;color:rgba(239,239,241,.70);line-height:1.55}
.icon{display:block;width:22px;height:22px;position:relative}
.i-bolt::before{
  content:"";
  position:absolute;inset:0;
  background:conic-gradient(from 180deg, rgba(var(--accent-rgb), 1), rgba(var(--accent2-rgb), 1), rgba(var(--warning-rgb), 1), rgba(var(--highlight-rgb), 1), rgba(var(--accent-rgb), 1));
  clip-path:polygon(44% 0, 78% 0, 54% 46%, 82% 46%, 30% 100%, 46% 56%, 18% 56%);
}
.i-moon::before{
  content:"";
  position:absolute;inset:2px;
  border-radius:999px;
  box-shadow:inset -8px 0 0 0 rgba(var(--warning-rgb), 1);
}
.i-shield::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(var(--accent-rgb), 1), rgba(var(--accent2-rgb), 1));
  clip-path:polygon(50% 0, 88% 12%, 88% 55%, 50% 100%, 12% 55%, 12% 12%);
}
.i-whatsapp::before{
  content:"";
  position:absolute;inset:0;
  border-radius:8px;
  background:linear-gradient(180deg, rgba(var(--accent-rgb), 1), rgba(var(--accent2-rgb), 1));
  clip-path:polygon(10% 10%, 90% 10%, 90% 78%, 56% 78%, 44% 92%, 44% 78%, 10% 78%);
}

.footer{
  position:relative;
  padding:56px 0;
  border-top:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(var(--accent-rgb), .16), transparent 60%),
    radial-gradient(760px 420px at 80% 30%, rgba(var(--accent2-rgb), .14), transparent 62%),
    linear-gradient(180deg, rgba(18,20,24,0) 0%, rgba(18,20,24,.58) 30%, rgba(18,20,24,.92) 100%);
}
.footer-inner{
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(0, .8fr);
  gap:22px;
  align-items:center;
  padding:22px 22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(19,31,31,.72);
  box-shadow:var(--shadow2);
  backdrop-filter:blur(16px);
}
.footer-brand{min-width:min(520px, 100%)}
.footer-name{
  font-weight:900;
  letter-spacing:.12em;
  font-size:14px;
  text-transform:uppercase;
}
.footer-name::after{
  content:"";
  display:block;
  width:64px;
  height:3px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(var(--accent-rgb), 1), rgba(var(--highlight-rgb), 1));
  box-shadow:0 10px 22px rgba(var(--accent-rgb), .18);
}
.footer-desc{
  margin-top:12px;
  color:rgba(239,239,241,.76);
  line-height:1.65;
  font-size:14px;
  max-width:70ch;
}
.footer-phone{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(239,239,241,.86);
  font-weight:700;
  line-height:1.55;
}
.footer-actions{
  display:grid;
  gap:12px;
  justify-items:stretch;
  align-content:center;
  padding:16px 16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.footer-actions .btn{width:100%}
.footer-note{
  color:rgba(239,239,241,.64);
  font-size:12px;
  line-height:1.55;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.reserve-intro-grid{
  margin-bottom:18px;
}
.info-card,
.step-card,
.notice-card,
.faq-item{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(62,70,79,.94), rgba(48,55,63,.94));
  box-shadow:var(--shadow2);
}
.section-band-light .info-card,
.section-band-light .step-card,
.section-band-light .notice-card,
.section-band-light .faq-item{
  border-color:rgba(60,65,71,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.96));
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}
.info-card{
  padding:18px;
  display:grid;
  gap:12px;
}
.info-kicker{
  color:rgba(239,239,241,.68);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}
.info-title{
  margin:0;
  font-size:22px;
  font-weight:900;
}
.info-text{
  margin:0;
  color:rgba(239,239,241,.72);
  line-height:1.6;
}
.info-list{
  margin:0;
  padding-left:18px;
  color:rgba(239,239,241,.78);
  line-height:1.6;
}
.pill-list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pill-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
  font-size:12px;
}
.step-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.step-card{
  padding:18px;
}
.step-number{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent2-rgb), 1));
  color:#0b1414;
  font-weight:900;
  font-size:18px;
  box-shadow:0 14px 28px rgba(var(--accent-rgb), .18);
}
.step-title{
  margin:14px 0 0;
  font-size:20px;
  font-weight:900;
}
.step-text{
  margin:8px 0 0;
  color:rgba(239,239,241,.72);
  line-height:1.6;
}
.notice-card{
  margin-top:18px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.notice-events{
  border-color:rgba(var(--accent2-rgb), .32);
  background:linear-gradient(135deg, rgba(var(--accent-rgb), .12), rgba(var(--accent2-rgb), .08));
}
.notice-events .info-kicker{
  color:var(--accent2);
}
.notice-warning{
  border-color:rgba(200, 60, 60, .4);
  background:linear-gradient(135deg, rgba(200, 60, 60, .12), rgba(180, 40, 40, .08));
}
.notice-warning .info-kicker{
  color:#e53e3e;
}
.faq-list{
  display:grid;
  gap:12px;
}
.faq-item{
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.faq-item summary::after{
  content:"+";
  flex:0 0 auto;
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(var(--accent-rgb), .12);
  color:rgba(var(--accent-rgb), 1);
  font-size:18px;
  line-height:1;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item p{
  margin:0;
  padding:0 18px 18px;
  color:rgba(239,239,241,.72);
  line-height:1.6;
}
.faq-item[open]{
  border-color:rgba(var(--accent2-rgb), .28);
  background:linear-gradient(180deg, rgba(64,72,81,.98), rgba(49,57,65,.98));
}
.section-band-light .faq-item[open]{
  background:linear-gradient(180deg, #fff, #f8fafc);
  border-color:rgba(var(--accent2-rgb), .32);
}
.faq-item[open] summary::after{
  content:"-";
}

@media (max-width: 820px){
  .footer-inner{grid-template-columns:1fr}
  .footer-actions{padding:14px 14px}
  .notice-card{flex-direction:column;align-items:flex-start}
}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:24px;
}
.map-container{
  height:380px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.location-info{
  background:linear-gradient(180deg, rgba(62,70,79,.94), rgba(48,55,63,.94));
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  padding:24px;
}
.location-title{
  margin:0 0 16px;
  font-size:20px;
  font-weight:900;
  color:#efeff1;
}
.location-info .info-list{
  color:rgba(239,239,241,.82);
}
.location-info .info-list li{
  color:rgba(239,239,241,.82);
}
.location-info .info-list strong{
  color:#efeff1;
}
.reference-pending{
  background:rgba(var(--accent-rgb), .08);
  border:1px dashed rgba(var(--accent-rgb), .32);
  border-radius:12px;
  padding:16px;
  color:rgba(239,239,241,.72);
  font-style:italic;
  line-height:1.6;
}
@media (max-width: 768px){
  .location-grid{grid-template-columns:1fr}
  .map-container{height:280px}
}

.badge-confirmed, .badge-paid{background:rgba(34,197,94,.1);color:#22c55e}
.badge-cancelled, .badge-unpaid{background:rgba(239,68,68,.1);color:#ef4444}
.badge-pending{background:rgba(234,179,8,.1);color:#eab308}
.btn-sm{padding:4px 8px;font-size:12px;min-height:auto}
.customer-info{display:flex;flex-direction:column;gap:2px}
.filter-group{display:flex;align-items:center;gap:8px}
.field-with-action{
  display:flex;
  gap:8px;
  align-items:center;
}
.field-with-action .control{flex:1}
.input-copy-wrap{
  position:relative;
  display:flex;
  align-items:center;
}
.input-copy-wrap .control{
  width:100%;
  padding-right:44px;
}
.btn-copy-inline{
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  padding:0;
  border:none;
  border-radius:8px;
  background:rgba(255,255,255,.12);
  color:rgba(239,239,241,.80);
  cursor:pointer;
  transition:background .18s, color .18s, transform .15s;
  flex-shrink:0;
}
.btn-copy-inline:hover{
  background:rgba(255,255,255,.22);
  color:var(--text);
  transform:translateY(-50%) scale(1.08);
}
.btn-copy-inline:active{
  transform:translateY(-50%) scale(.96);
}
.btn-copy-inline:focus-visible{
  outline:2px solid rgba(var(--accent-rgb),.70);
  outline-offset:2px;
}
.btn-copy-inline svg{
  width:15px;
  height:15px;
  pointer-events:none;
}
.control-sm{padding:6px 12px;font-size:14px;width:auto}

.modal-confirm{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(15,23,42,.8);
  backdrop-filter:blur(8px);
}
.modal-confirm.is-open{display:flex}
.confirm-content{
  background:linear-gradient(180deg, rgba(64,72,81,.98), rgba(49,57,65,.98));
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  width:100%;
  max-width:400px;
  padding:24px;
  box-shadow:0 20px 25px -5px rgba(0,0,0,.5);
}
.confirm-title{font-size:18px;font-weight:800;margin-bottom:12px;color:#fff}
.confirm-body{margin-bottom:20px}
.confirm-footer{display:flex;justify-content:flex-end;gap:12px}
.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(8px);
}
.modal{
  position:fixed;
  inset:0;
  z-index:2400;
  display:none;
  overflow-y:auto;
  padding:12px 0;
}
.modal.is-open{
  display:block;
}
.modal-dialog{
  position:relative;
  width:min(720px, calc(100% - 28px));
  margin:0 auto;
  background:rgba(19,31,31,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
  max-height:calc(100dvh - 24px);
  display:flex;
  flex-direction:column;
  transform:translateY(8px);
  animation:pop .18s var(--ease) both;
}
@keyframes pop{from{opacity:0;transform:translateY(16px) scale(.98)}to{opacity:1;transform:translateY(8px) scale(1)}}
.modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modal-kicker{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:rgba(239,239,241,.62);font-weight:800}
.modal-title{margin:8px 0 0;font-weight:900}
.icon-btn{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:rgba(239,239,241,.88);
  cursor:pointer;
}
.icon-btn:hover{background:rgba(255,255,255,.08)}
.modal-body{
  padding:16px 18px 18px;
  display:grid;
  gap:14px;
  overflow:auto;
  min-height:0;
}
.form-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px}
.form-grid-align-end{align-items:end}
.form-note{
  display:none;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid rgba(var(--accent-rgb), .26);
  background:rgba(var(--accent-rgb), .10);
  color:rgba(239,239,241,.92);
  line-height:1.5;
  font-weight:700;
}
.form-note.is-visible{display:block;animation:fadeUp .18s var(--ease) both}
@keyframes fadeUp{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.field-full{grid-column:1 / -1}
.field-terms{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px;
  background:rgba(200,60,60,.08);
  border:1px solid rgba(200,60,60,.25);
  border-radius:12px;
  cursor:pointer;
}
.field-terms input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:var(--accent);
  cursor:pointer;
  flex-shrink:0;
}
.terms-label{
  font-size:13px;
  color:rgba(239,239,241,.85);
  line-height:1.5;
}
.terms-label a{
  color:var(--accent2);
  text-decoration:underline;
}
.field-terms:hover{
  background:rgba(200,60,60,.12);
}
.control-textarea{
  min-height:104px;
  resize:vertical;
}

.payment-summary{
  display:grid;
  gap:14px;
  padding:16px 18px 0;
}
.summary-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(var(--accent2-rgb), .28);
  background:rgba(var(--accent2-rgb), .12);
  color:rgba(239,239,241,.92);
  font-weight:800;
}
.payment-summary-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.payment-summary-value{
  margin-top:6px;
  font-size:18px;
  font-weight:800;
  color:rgba(239,239,241,.96);
}
.payment-instructions{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  padding:14px 16px;
  color:rgba(239,239,241,.78);
  line-height:1.55;
}

/* QR Payment */
.qr-payment-block{
  display:grid;
  gap:14px;
  padding:0 18px 18px;
}
.payment-form-body{
  display:grid;
  gap:14px;
  padding:0 18px 18px;
}
.qr-notice{
  display:flex;
  align-items:flex-start;
  gap:10px;
  border-radius:14px;
  border:1px solid rgba(var(--warning-rgb),.28);
  background:rgba(var(--warning-rgb),.08);
  padding:12px 14px;
  color:rgba(239,239,241,.88);
  font-size:13px;
  line-height:1.55;
}
.qr-notice svg{
  width:18px;height:18px;
  flex-shrink:0;
  margin-top:2px;
  stroke:rgba(var(--warning-rgb),1);
}
.qr-image-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
}
.qr-image{
  display:block;
  width:min(220px, 100%);
  height:auto;
  border-radius:12px;
}
.qr-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  flex-shrink:0;
}
.qr-action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;height:34px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  color:#334155;
  cursor:pointer;
  transition:background .18s, transform .15s;
  padding:0;
}
.qr-action-btn:hover{
  background:#fff;
  transform:scale(1.06);
}
.qr-action-btn:focus-visible{
  outline:2px solid rgba(var(--accent-rgb),.70);
  outline-offset:2px;
}
.qr-action-btn svg{
  width:16px;height:16px;
  pointer-events:none;
}
.qr-label{
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:rgba(239,239,241,.62);
  letter-spacing:.04em;
}

.toast-wrap{
  position:fixed;
  right:14px;
  bottom:14px;
  display:grid;
  gap:10px;
  z-index:2600;
}
.toast{
  width:min(380px, calc(100vw - 28px));
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(19,31,31,.92);
  box-shadow:var(--shadow2);
  padding:12px 12px;
  backdrop-filter:blur(12px);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  animation:toastIn .22s var(--ease) both;
}
@keyframes toastIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.toast-title{font-weight:900}
.toast-sub{margin-top:4px;color:rgba(239,239,241,.70);font-size:13px;line-height:1.35}
.toast-close{
  border:0;
  background:transparent;
  color:rgba(239,239,241,.85);
  cursor:pointer;
  padding:6px 6px;
  border-radius:12px;
}
.toast-close:hover{background:rgba(255,255,255,.08)}

@media (max-width: 960px){
  .hero-inner{grid-template-columns:1fr;gap:16px}
  .hero-title{font-size:46px}
  .hero-metrics{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .home-sections .cards{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .control-grid{grid-template-columns:1fr;align-items:stretch}
  .benefits{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .info-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .step-grid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .hero{padding:60px 0 34px}
  .hero-title{font-size:40px}
  .hero-metrics{grid-template-columns:1fr;gap:10px}
  .home-sections .cards{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}

  .nav-toggle{display:inline-flex}
  .nav-menu{
    position:absolute;
    right:20px;
    top:88px;
    width:min(360px, calc(100vw - 40px));
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    border-radius:20px;
    box-shadow:var(--shadow2);
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    display:none;
  }
  .nav-menu.is-open{display:flex}
  .btn-reservar{width:100%}
  .info-grid{grid-template-columns:1fr}
  .payment-summary-grid{grid-template-columns:1fr}
  .nav-admin-link{
    width:100%;
    min-height:44px;
    border-radius:14px;
  }
}

.trace-panel{
  position:fixed;
  left:14px;
  bottom:14px;
  width:min(760px, calc(100vw - 28px));
  max-height:min(70vh, 720px);
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(19,31,31,.92);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
  z-index:2300;
  color:rgba(239,239,241,.92);
}
.trace-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.trace-title{font-weight:950;letter-spacing:.04em}
.trace-sub{
  margin-top:4px;
  color:rgba(239,239,241,.65);
  font-size:12px;
  overflow-wrap:anywhere;
  max-width:60ch;
}
.trace-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.trace-btn{padding:9px 10px;border-radius:12px}
.trace-close{width:38px;height:38px;border-radius:12px}
.trace-body{
  padding:12px 14px;
  display:grid;
  gap:12px;
  overflow:auto;
  max-height:calc(70vh - 58px);
}
.trace-grid{display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:12px}
.trace-card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:18px;
  padding:10px 10px;
}
.trace-card-title{
  font-weight:900;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(239,239,241,.70);
}
.trace-pre{
  margin:10px 0 0;
  font-size:12px;
  line-height:1.45;
  white-space:pre-wrap;
  word-break:break-word;
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color:rgba(239,239,241,.86);
}
@media (max-width: 720px){
  .trace-grid{grid-template-columns:1fr}
  .trace-panel{left:14px;right:14px;width:auto}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;scroll-behavior:auto !important}
}

