:root {
  --navy-950: #02101d;
  --navy-900: #061525;
  --navy-800: #0b2134;
  --navy-700: #10314b;
  --blue-500: #3eb8e4;
  --blue-400: #74d7ff;
  --aqua: #70f0df;
  --cream: #f7f2e9;
  --white: #ffffff;
  --muted: #aeb9c5;
  --line: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(0, 0, 0, .26);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --green: #18b976;
  --green-soft: rgba(24, 185, 118, .14);
  --red: #f05262;
  --red-soft: rgba(240, 82, 98, .14);
  --gray: #9aa7b2;
  --gray-soft: rgba(154, 167, 178, .18);
  --gold: #d6b66a;
  --gold-soft: rgba(214, 182, 106, .16);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy-950);
  background: #f3f7fa;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.is-loaded { opacity: 0; visibility: hidden; }
.page-loader span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  border-top-color: var(--blue-400);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { min-height: 100vh; color: var(--white); background: var(--navy-950); }
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(2, 16, 29, .54);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: .02em; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  color: var(--aqua);
}
.brand-text { white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: .94rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); transform: translateY(-1px); }
.nav-links .admin-link { border: 1px solid rgba(255,255,255,.18); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 10px; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/barco-fondo.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: -3;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 26% 38%, rgba(116,215,255,.15), transparent 30%),
              radial-gradient(circle at 74% 52%, rgba(0,0,0,.3), transparent 46%);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,16,29,.50) 0%, rgba(2,16,29,.16) 35%, rgba(2,16,29,.72) 100%),
              linear-gradient(90deg, rgba(2,16,29,.45), rgba(2,16,29,.05));
  z-index: -2;
}
@keyframes heroZoom { to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); } }
.hero-content {
  width: min(760px, calc(100% - 40px));
  text-align: center;
  margin-top: -70px;
  text-shadow: 0 8px 28px rgba(0,0,0,.32);
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .73rem;
  font-weight: 800;
  color: var(--aqua);
}
.eyebrow.dark { color: #0d6e91; }
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: -.07em;
  line-height: .88;
  font-weight: 780;
}
.hero-copy {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}
.reserve-pill {
  position: absolute;
  left: 50%;
  bottom: 21vh;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 44px));
  min-height: 96px;
  border-radius: 999px;
  border: 3px dotted rgba(255,255,255,.86);
  background: rgba(4, 23, 39, .18);
  color: #fff;
  font-size: clamp(1.04rem, 2vw, 1.36rem);
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 54px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.07);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.reserve-pill:hover {
  transform: translateX(-50%) translateY(-5px);
  background: rgba(13, 110, 145, .24);
  border-color: var(--aqua);
  box-shadow: 0 30px 70px rgba(0,0,0,.34), 0 0 36px rgba(112,240,223,.18);
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 9px;
}
.scroll-cue span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: cue 1.45s ease infinite;
}
@keyframes cue { 60% { transform: translateY(18px); opacity: .2; } 100% { transform: translateY(0); opacity: 1; } }

.reveal-up, .reveal-down, .reveal-scale { opacity: 0; transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal-up { transform: translateY(28px); }
.reveal-down { transform: translateY(-22px); }
.reveal-scale { transform: translateX(-50%) scale(.94); }
.reveal-up.in-view, .reveal-down.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale.in-view { opacity: 1; transform: translateX(-50%) scale(1); }

.intro-strip {
  width: min(1120px, calc(100% - 32px));
  margin: -64px auto 84px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.72);
}
.intro-strip article { padding: 28px; background: rgba(255,255,255,.78); }
.intro-strip strong { display: block; font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-950); }
.intro-strip span { color: #546271; }

.content-section, .booking-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
}
.booking-section {
  padding: 76px 0 10px;
  opacity: 1;
  transition: opacity .45s ease, transform .45s ease;
}
.booking-section.is-hidden {
  display: none;
  opacity: 0;
  transform: translateY(18px);
}
.section-heading { text-align: center; width: min(720px, 100%); margin: 0 auto 32px; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2 { margin: 0 0 14px; font-size: clamp(2rem, 4.6vw, 4rem); line-height: .98; letter-spacing: -.055em; color: var(--navy-950); }
.section-heading p:not(.eyebrow) { color: #596879; line-height: 1.75; margin: 0; }
.legend { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid #dce5ec; border-radius: 999px; background: #fff; font-size: .9rem; color: #506070; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.legend-dot.available { background: var(--green); }
.legend-dot.blocked { background: var(--gray); }
.legend-dot.booked { background: var(--red); }
.legend-dot.pending { background: var(--gold); }
.booking-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(330px, .78fr); gap: 22px; align-items: start; }
.calendar-panel, .side-panel, .price-card, .faq-item, .map-card, .contact-card, .admin-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,33,52,.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 55px rgba(16, 49, 75, .11);
}
.calendar-panel { padding: 22px; }
.panel-topline, .card-title-row, .dashboard-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-topline h3, .side-panel h3 { margin: 0 0 5px; }
.panel-topline p { margin: 0; color: #6b7b8b; }
.ghost-btn, .danger-ghost {
  border: 1px solid #d9e4eb;
  background: #fff;
  color: var(--navy-800);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.ghost-btn:hover { transform: translateY(-2px); border-color: var(--blue-400); background: #f2fbff; }
.danger-ghost { color: #a52a39; }
.danger-ghost:hover { transform: translateY(-2px); background: #fff5f6; border-color: #ffcbd1; }
.calendar-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.month-card { border: 1px solid #dce6ed; border-radius: 24px; padding: 16px; background: linear-gradient(180deg, #fff, #f8fbfd); animation: fadeIn .45s ease both; }
.month-card h4 { margin: 0 0 14px; font-size: 1.05rem; text-transform: capitalize; }
.weekdays, .days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.weekdays span { color: #748496; font-size: .72rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.days-grid { margin-top: 7px; }
.day-cell {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  color: #465464;
  background: var(--gray-soft);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.day-cell.empty { opacity: 0; pointer-events: none; }
.day-cell:not(.empty):hover { transform: translateY(-2px); }
.day-cell.available { color: #086642; background: var(--green-soft); box-shadow: inset 0 0 0 1px rgba(24,185,118,.38); }
.day-cell.booked { color: #a12231; background: var(--red-soft); box-shadow: inset 0 0 0 1px rgba(240,82,98,.34); cursor: not-allowed; }
.day-cell.blocked, .day-cell.past { color: #8793a0; background: #edf2f5; cursor: not-allowed; opacity: .78; }
.day-cell.selected { outline: 3px solid rgba(62,184,228,.34); box-shadow: 0 12px 28px rgba(13,110,145,.13); }
.day-cell.has-pending::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(214,182,106,.6);
  animation: pulseDot 1.1s ease-in-out infinite;
}
@keyframes pulseDot { 70% { box-shadow: 0 0 0 8px rgba(214,182,106,0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.side-panel { padding: 22px; position: sticky; top: 110px; }
.empty-state { min-height: 380px; display: grid; place-items: center; text-align: center; align-content: center; }
.empty-icon { font-size: 3rem; color: var(--blue-500); }
.empty-state p { color: #67788b; line-height: 1.65; max-width: 280px; }
.is-hidden { display: none !important; }
.selected-date-box { padding: 18px; border-radius: 22px; background: linear-gradient(135deg, #062036, #0d6e91); color: #fff; margin-bottom: 16px; }
.selected-date-box span { display: block; color: rgba(255,255,255,.68); font-size: .84rem; margin-bottom: 5px; }
.selected-date-box strong { font-size: 1.35rem; text-transform: capitalize; }
.slot-list { display: grid; gap: 10px; margin-bottom: 18px; }
.slot-btn {
  width: 100%;
  border: 1px solid #dce6ed;
  border-radius: 20px;
  background: #fff;
  padding: 15px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.slot-btn strong { display: block; margin-bottom: 4px; }
.slot-btn span { color: #657689; font-size: .9rem; }
.slot-price { font-weight: 900; color: var(--navy-900); }
.slot-btn.available:hover, .slot-btn.selected { transform: translateY(-2px); border-color: rgba(24,185,118,.55); box-shadow: 0 16px 34px rgba(24,185,118,.13); }
.slot-btn.pending {
  border-color: rgba(214,182,106,.55);
  background: var(--gold-soft);
  animation: blinkPending 1.1s ease-in-out infinite;
  cursor: not-allowed;
}
.slot-btn.booked { border-color: rgba(240,82,98,.35); background: var(--red-soft); cursor: not-allowed; opacity: .88; }
@keyframes blinkPending { 0%, 100% { box-shadow: 0 0 0 rgba(214,182,106,0); } 50% { box-shadow: 0 0 0 6px rgba(214,182,106,.13); } }
.form-heading h3 { margin: 0 0 6px; }
.form-heading p, .form-note { margin: 0 0 14px; color: #6b7b8b; line-height: 1.6; font-size: .94rem; }
.reservation-form, .admin-form { display: grid; gap: 13px; }
label { display: grid; gap: 7px; color: #405164; font-weight: 750; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d5e1e9;
  border-radius: 15px;
  background: #fff;
  color: var(--navy-950);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(62,184,228,.14); }
.primary-btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6e91, #0a9db5 45%, #70f0df);
  color: #fff;
  min-height: 50px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(13,110,145,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(13,110,145,.33); filter: saturate(1.06); }
.primary-btn.as-link { display: inline-flex; align-items: center; justify-content: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.price-card { padding: 22px; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--blue-500), var(--aqua)); }
.price-card h3 { margin: 0 0 10px; }
.price-card p { margin: 0 0 14px; color: #69798b; line-height: 1.6; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.price-card li { display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid #edf2f5; padding-top: 10px; color: #4a5a6a; }
.price-card li strong { color: var(--navy-950); }
.skeleton { min-height: 220px; background: linear-gradient(90deg, #eef4f7 25%, #f8fbfd 37%, #eef4f7 63%); background-size: 400% 100%; animation: shimmer 1.25s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.glass-section { padding: 70px 0; width: 100%; max-width: none; background: linear-gradient(180deg, #eaf3f8, #f7fbfd); }
.glass-section > * { width: min(1180px, calc(100% - 32px)); margin-left: auto; margin-right: auto; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.faq-item { padding: 20px; }
.faq-item summary { cursor: pointer; font-weight: 900; color: var(--navy-950); }
.faq-item p { color: #667789; line-height: 1.7; margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.map-card { min-height: 300px; display: grid; place-items: center; align-content: center; text-align: center; padding: 28px; background: linear-gradient(135deg, rgba(2,16,29,.96), rgba(13,110,145,.86)); color: #fff; }
.map-card span { font-size: 3rem; }
.map-card strong { margin: 12px 0; font-size: 1.45rem; }
.map-card p { color: rgba(255,255,255,.72); margin: 0; max-width: 390px; line-height: 1.6; }
.contact-section { width: min(1180px, calc(100% - 32px)); margin: 0 auto 92px; }
.contact-card { padding: clamp(28px, 6vw, 64px); color: #fff; background: linear-gradient(135deg, rgba(2,16,29,.97), rgba(7,43,68,.92)), url('../img/barco-fondo.jpg') center/cover; overflow: hidden; }
.contact-card h2 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 4rem); line-height: .98; letter-spacing: -.05em; }
.contact-card p:not(.eyebrow) { max-width: 620px; line-height: 1.75; color: rgba(255,255,255,.74); }
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px 11px 17px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37,211,102,.34);
  font-weight: 850;
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp strong { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  z-index: 2000;
  min-width: min(460px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(2,16,29,.94);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.error { background: #9f2533; }

/* Admin */
.admin-body {
  background: radial-gradient(circle at top left, rgba(62,184,228,.19), transparent 38%),
              linear-gradient(135deg, #edf5f9, #f8fbfd);
  min-height: 100vh;
}
.admin-shell { width: min(1220px, calc(100% - 28px)); margin: 0 auto; padding: 26px 0 70px; }
.admin-login-card {
  min-height: calc(100vh - 52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.login-visual { background: linear-gradient(180deg, rgba(2,16,29,.18), rgba(2,16,29,.72)), url('../img/barco-fondo.jpg') center/cover; min-height: 420px; }
.login-content { padding: clamp(28px, 6vw, 72px); display: grid; align-content: center; }
.login-content h1, .dashboard-header h1 { margin: 0 0 10px; font-size: clamp(2.3rem, 5vw, 4.8rem); letter-spacing: -.055em; line-height: .95; }
.login-content p, .dashboard-header p { color: #627386; line-height: 1.7; }
.back-link { display: inline-flex; margin-bottom: 18px; color: #0d6e91; font-weight: 850; }
.dashboard { animation: fadeIn .35s ease both; }
.dashboard-header { margin: 8px 0 24px; }
.dashboard-actions { display: flex; gap: 10px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.admin-stats article { padding: 20px; border-radius: 24px; background: #fff; border: 1px solid #dce6ed; box-shadow: 0 14px 35px rgba(16,49,75,.08); }
.admin-stats span { display: block; color: #637487; margin-bottom: 10px; }
.admin-stats strong { font-size: 2rem; letter-spacing: -.04em; }
.admin-grid-main { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.admin-card { padding: 22px; margin-bottom: 18px; }
.admin-card h2 { margin: 0; letter-spacing: -.03em; }
.admin-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-full { grid-column: 1 / -1; }
.admin-note { color: #6b7b8b; line-height: 1.65; margin-bottom: 0; }
.full-width { width: 100%; justify-content: center; }
.admin-prices { display: grid; gap: 12px; margin: 12px 0 14px; max-height: 430px; overflow: auto; padding-right: 6px; }
.price-edit-card { border: 1px solid #dce6ed; border-radius: 20px; padding: 14px; display: grid; gap: 10px; background: #fbfdfe; }
.price-edit-card strong { color: var(--navy-950); }
.price-edit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.admin-filter input { min-width: 240px; }
.table-wrap { width: 100%; overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.admin-table th, .admin-table td { text-align: left; padding: 13px 12px; border-bottom: 1px solid #e5edf2; vertical-align: top; }
.admin-table th { color: #637487; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; font-size: .8rem; font-weight: 900; }
.status-badge.available { background: var(--green-soft); color: #08724a; }
.status-badge.pending { background: var(--gold-soft); color: #8b6817; animation: blinkPending 1.1s ease-in-out infinite; }
.status-badge.booked { background: var(--red-soft); color: #a52131; }
.row-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.mini-btn { border: 1px solid #d6e2e9; background: #fff; border-radius: 999px; padding: 8px 10px; font-weight: 850; font-size: .82rem; }
.mini-btn:hover { background: #f3fbff; border-color: var(--blue-400); }
.mini-btn.danger { color: #af2937; }
.mini-btn.ok { color: #0b7a51; }
.modal-backdrop { position: fixed; inset: 0; z-index: 2100; background: rgba(2,16,29,.66); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 18px; }
.modal-card { width: min(520px, 100%); background: #fff; border-radius: 28px; padding: 24px; position: relative; box-shadow: var(--shadow); animation: modalIn .25s ease both; }
@keyframes modalIn { from { transform: translateY(16px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 14px; border: 0; width: 36px; height: 36px; border-radius: 50%; background: #edf3f7; color: var(--navy-900); font-size: 1.3rem; }
.modal-card h2 { margin: 0 0 8px; letter-spacing: -.03em; }
.modal-info { color: #607286; line-height: 1.55; }

@media (max-width: 980px) {
  .nav { border-radius: 28px; align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; width: 100%; padding-top: 12px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .intro-strip { grid-template-columns: repeat(2, 1fr); }
  .booking-grid, .two-col, .admin-grid-main, .admin-login-card { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .login-visual { min-height: 260px; }
}

@media (max-width: 620px) {
  .nav { top: 10px; width: calc(100% - 20px); }
  .brand-text { font-size: .92rem; }
  .hero-content { margin-top: -110px; }
  .reserve-pill { min-height: 78px; bottom: 18vh; }
  .intro-strip { grid-template-columns: 1fr; margin-top: -34px; }
  .content-section, .booking-section, .contact-section { width: min(100% - 20px, 1180px); margin-bottom: 66px; }
  .calendar-panel, .side-panel, .admin-card { padding: 16px; border-radius: 24px; }
  .month-card { padding: 12px; border-radius: 20px; }
  .day-cell { min-height: 37px; border-radius: 11px; font-size: .9rem; }
  .pricing-grid, .admin-stats, .admin-form-grid { grid-template-columns: 1fr; }
  .price-edit-grid { grid-template-columns: 1fr; }
  .panel-topline, .card-title-row, .dashboard-header { align-items: flex-start; flex-direction: column; }
  .dashboard-actions { width: 100%; }
  .dashboard-actions button { flex: 1; }
  .floating-whatsapp span { display: none; }
  .toast { bottom: 82px; }
}

/* Ajustes v2: menú hamburguesa universal, login visible y modo offline */
.nav { align-items: center; flex-wrap: nowrap; }
.nav-actions { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
.admin-icon-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.admin-icon-link:hover { transform: translateY(-2px); background: rgba(112,240,223,.18); border-color: rgba(112,240,223,.55); }
.admin-icon-link span { font-size: 1.05rem; color: var(--aqua); }
.menu-toggle { display: inline-flex; flex-shrink: 0; }
.menu-toggle span { transition: transform .22s ease, opacity .22s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(330px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(2,16,29,.90);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-links.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.nav-links a { text-align: left; padding: 13px 15px; border-radius: 16px; }
.nav-links .admin-link { border: 1px solid rgba(255,255,255,.14); color: #fff; background: rgba(255,255,255,.08); }
.data-mode-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(13,110,145,.09);
  color: #0d6e91;
  border: 1px solid rgba(13,110,145,.18);
  font-size: .78rem;
  font-weight: 850;
}
.data-mode-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.data-mode-pill.offline { background: rgba(214,182,106,.14); color: #84600b; border-color: rgba(214,182,106,.35); }
.data-mode-pill.offline::before { background: var(--gold); box-shadow: 0 0 0 0 rgba(214,182,106,.5); animation: pulseDot 1.2s ease infinite; }
.status-badge.offline { background: var(--gray-soft); color: #586777; }
.mini-btn.muted { color: #566575; }
button:disabled { opacity: .55; cursor: not-allowed; }

@media (max-width: 1120px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav { align-items: center; flex-wrap: nowrap; border-radius: 999px; }
  .nav-links { display: flex; width: min(360px, calc(100vw - 24px)); padding-top: 12px; }
  .nav-links.open { display: flex; }
}

@media (max-width: 760px) {
  .hero { min-height: 100svh; }
  .hero-content { width: min(100% - 28px, 620px); margin-top: -92px; }
  .hero h1 { font-size: clamp(2.15rem, 13vw, 4.3rem); line-height: .92; }
  .hero-copy { font-size: .98rem; line-height: 1.55; margin-top: 18px; }
  .reserve-pill { width: calc(100% - 36px); min-height: 76px; bottom: 17vh; border-width: 2px; padding: 0 18px; }
  .calendar-grid { gap: 14px; }
  .booking-grid { gap: 16px; }
  .slot-btn { grid-template-columns: 1fr; }
  .slot-price { justify-self: start; }
  .contact-card { padding: 28px 20px; }
}

@media (max-width: 620px) {
  .nav { min-height: 58px; padding: 9px 10px 9px 12px; }
  .brand-mark { width: 31px; height: 31px; }
  .admin-icon-link, .menu-toggle { width: 38px; height: 38px; }
  .nav-actions { gap: 7px; }
  .nav-links { left: 50%; right: auto; transform: translate(-50%, -10px) scale(.98); width: calc(100vw - 20px); }
  .nav-links.open { transform: translate(-50%, 0) scale(1); }
  .scroll-cue { display: none; }
  .section-heading h2 { font-size: clamp(1.8rem, 11vw, 3rem); }
  .legend { justify-content: flex-start; }
  .legend span { font-size: .82rem; padding: 8px 10px; }
  .panel-topline .ghost-btn { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card li { align-items: flex-start; flex-direction: column; }
  .admin-login-card { min-height: auto; }
  .login-content { padding: 24px 18px 28px; }
  .dashboard-actions { flex-wrap: wrap; }
  .dashboard-actions .data-mode-pill { width: 100%; justify-content: center; }
  .dashboard-actions button { flex: 1 1 150px; }
  .admin-shell { width: min(100% - 18px, 1220px); padding-top: 12px; }
  .admin-stats article { padding: 16px; }
  .admin-stats strong { font-size: 1.65rem; }
  .admin-table { min-width: 780px; }
}

@media (max-width: 390px) {
  .brand-text { max-width: 138px; overflow: hidden; text-overflow: ellipsis; }
  .hero-content { margin-top: -82px; }
  .reserve-pill { bottom: 15vh; font-size: .98rem; min-height: 68px; }
  .day-cell { min-height: 34px; border-radius: 9px; font-size: .82rem; }
  .weekdays, .days-grid { gap: 4px; }
  .month-card { padding: 10px; }
  .selected-date-box strong { font-size: 1.05rem; }
  input, textarea, select { padding: 12px; }
}

/* Ajustes v3: menú hamburguesa visible, login visible, calendario único con navegación y clima */
.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}
.brand {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}
.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-actions {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
}
.admin-icon-link,
.menu-toggle {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: 44px !important;
  height: 44px !important;
}
.admin-icon-link {
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.05rem;
}
.admin-icon-link .login-symbol {
  display: block;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}
.menu-toggle {
  position: relative;
  z-index: 1003;
  border: 1px solid rgba(255,255,255,.22) !important;
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  cursor: pointer;
}
.menu-toggle .hamburger-line,
.menu-toggle span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  min-height: 2px !important;
  border-radius: 99px !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.menu-toggle.open span:nth-child(2) { opacity: 0 !important; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }
.nav-links {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  left: auto !important;
  width: min(360px, calc(100vw - 24px)) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 6px !important;
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 24px !important;
  background: rgba(2,16,29,.94) !important;
  backdrop-filter: blur(22px) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.36) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) scale(.98) !important;
  pointer-events: none !important;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
}
.nav-links.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}
.nav-links a {
  width: 100%;
  text-align: left !important;
  padding: 14px 15px !important;
  border-radius: 16px !important;
}

.legend-dot.today { background: #050b11; }
.calendar-topline {
  gap: 16px;
}
.calendar-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}
.calendar-controls strong {
  min-width: 148px;
  text-align: center;
  text-transform: capitalize;
  color: var(--navy-950);
  background: #f5f9fb;
  border: 1px solid #dce6ed;
  border-radius: 999px;
  padding: 11px 14px;
}
.month-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d5e1e8;
  background: #fff;
  color: var(--navy-900);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.month-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--blue-400);
  background: #f2fbff;
}
.month-arrow:disabled {
  opacity: .38;
  cursor: not-allowed;
}
.small-refresh {
  min-height: 42px;
  padding: 0 14px;
}
.reservation-live-summary {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto 20px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid #dce6ed;
  color: #5f7080;
  box-shadow: 0 18px 45px rgba(16,49,75,.08);
  text-align: center;
  font-weight: 750;
  line-height: 1.45;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.reservation-live-summary.active {
  color: var(--navy-950);
  background: linear-gradient(135deg, rgba(112,240,223,.17), rgba(62,184,228,.12)), #fff;
  border-color: rgba(62,184,228,.32);
  transform: translateY(-2px);
}
.calendar-grid.single-calendar,
.calendar-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.single-month-card {
  width: 100%;
}
.single-month-card h4 {
  display: none;
}
.day-cell.today {
  background: #050b11 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 12px 24px rgba(5,11,17,.22) !important;
  opacity: 1 !important;
}
.day-cell.today::before {
  content: 'hoy';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .52rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.78);
}
.day-cell.today.has-pending::after {
  border-color: #050b11;
}
.weather-clock {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(290px, calc(100vw - 96px));
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(2,16,29,.72);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  animation: fadeIn .35s ease both;
}
.weather-emoji {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  font-size: 1.25rem;
}
.weather-clock strong {
  display: block;
  line-height: 1;
  font-size: 1.02rem;
}
.weather-clock small {
  display: block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,.76);
  margin-top: 3px;
}

@media (max-width: 760px) {
  .nav {
    top: 10px !important;
    width: calc(100% - 18px) !important;
    min-height: 60px !important;
    padding: 9px 10px 9px 12px !important;
    border-radius: 999px !important;
  }
  .brand-mark { width: 30px !important; height: 30px !important; }
  .brand-text { font-size: .9rem; max-width: calc(100vw - 168px); }
  .admin-icon-link,
  .menu-toggle {
    width: 39px !important;
    height: 39px !important;
  }
  .menu-toggle .hamburger-line,
  .menu-toggle span {
    width: 21px !important;
  }
  .nav-links {
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 18px) !important;
    transform: translate(-50%, -10px) scale(.98) !important;
  }
  .nav-links.open {
    transform: translate(-50%, 0) scale(1) !important;
  }
  .calendar-topline {
    align-items: stretch !important;
    flex-direction: column !important;
  }
  .calendar-controls {
    width: 100%;
    justify-content: space-between;
  }
  .calendar-controls strong {
    flex: 1;
    min-width: 0;
  }
  .small-refresh {
    width: 100%;
  }
  .reservation-live-summary {
    width: calc(100% - 20px);
    margin-bottom: 14px;
    text-align: left;
    font-size: .92rem;
  }
  .weather-clock {
    left: 10px;
    bottom: 10px;
    max-width: calc(100vw - 86px);
    padding: 9px 10px;
  }
  .weather-emoji {
    width: 31px;
    height: 31px;
    font-size: 1rem;
  }
  .weather-clock strong { font-size: .92rem; }
  .weather-clock small { max-width: 138px; font-size: .72rem; }
}

@media (max-width: 390px) {
  .brand-text { max-width: calc(100vw - 158px) !important; }
  .nav-actions { gap: 6px !important; }
  .admin-icon-link,
  .menu-toggle {
    width: 36px !important;
    height: 36px !important;
  }
  .calendar-controls { gap: 6px; }
  .month-arrow { width: 38px; height: 38px; }
  .calendar-controls strong { padding: 10px 8px; font-size: .86rem; }
}

/* Ajustes v4: menú reconstruido sin marca visible, solo hamburguesa + login */
.site-menu {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1300;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}
.site-menu .menu-toggle,
.site-menu .admin-icon-link {
  pointer-events: auto;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255,255,255,.26) !important;
  background: rgba(2,16,29,.58) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.24) !important;
  color: #fff !important;
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease !important;
}
.site-menu .menu-toggle:hover,
.site-menu .admin-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(2,16,29,.82) !important;
  border-color: rgba(112,240,223,.55) !important;
  box-shadow: 0 24px 52px rgba(0,0,0,.34), 0 0 28px rgba(112,240,223,.12) !important;
}
.site-menu .menu-toggle {
  flex-direction: column !important;
  gap: 5px !important;
  padding: 0 !important;
}
.site-menu .hamburger-line {
  display: block !important;
  width: 24px !important;
  height: 2px !important;
  min-height: 2px !important;
  background: #fff !important;
  border-radius: 999px !important;
  transform-origin: center;
  transition: opacity .2s ease, transform .22s ease !important;
}
.site-menu .menu-toggle.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.site-menu .menu-toggle.open .hamburger-line:nth-child(2) { opacity: 0 !important; transform: scaleX(.4) !important; }
.site-menu .menu-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }
.site-menu .admin-icon-link {
  text-decoration: none;
  font-size: 1.08rem;
}
.site-menu .login-symbol { line-height: 1; filter: drop-shadow(0 5px 10px rgba(0,0,0,.28)); }
.menu-panel {
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: min(330px, calc(100vw - 36px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: rgba(2,16,29,.93);
  backdrop-filter: blur(24px);
  box-shadow: 0 26px 65px rgba(0,0,0,.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(.98);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.menu-panel.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 17px;
  color: rgba(255,255,255,.88);
  font-weight: 750;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.menu-panel a::after {
  content: '↓';
  opacity: .44;
  font-size: .86rem;
}
.menu-panel a:hover {
  color: #fff;
  background: rgba(255,255,255,.11);
  transform: translateX(3px);
}

/* Ajustes v4: calendario visual del administrador y moneda EUR */
.admin-visual-calendar {
  margin: 18px 0 24px;
  padding: 16px;
  border: 1px solid #dce6ed;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}
.admin-calendar-title-row,
.admin-calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-calendar-controls { justify-content: flex-end; }
.admin-calendar-controls strong {
  min-width: 150px;
  text-align: center;
  text-transform: capitalize;
  color: var(--navy-950);
  background: #fff;
  border: 1px solid #dce6ed;
  border-radius: 999px;
  padding: 10px 13px;
}
.admin-calendar-grid {
  margin-top: 14px;
}
.admin-calendar-grid .month-card {
  border: 0;
  padding: 0;
  background: transparent;
}
.admin-calendar-grid .single-month-card h4 { display: none; }
.admin-calendar-grid .day-cell {
  cursor: pointer;
}
.admin-calendar-grid .day-cell.offline {
  color: #566575;
  background: #edf2f5;
  box-shadow: inset 0 0 0 1px rgba(126,143,157,.22);
}
.admin-calendar-grid .day-cell.blocked {
  color: #8793a0;
  background: #edf2f5;
  opacity: 1;
}
.admin-calendar-grid .day-cell.past {
  cursor: not-allowed;
  opacity: .48;
}
.admin-selected-summary {
  margin: 14px 0 0;
  padding: 12px 13px;
  border-radius: 18px;
  background: rgba(13,110,145,.08);
  color: #24465f;
  font-weight: 700;
  line-height: 1.45;
}
.admin-day-slots {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.admin-day-slot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e1eaf0;
  border-radius: 18px;
  background: #fff;
}
.admin-day-slot strong { display: block; }
.admin-day-slot small { color: #657586; }
.manual-booking-box {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e0e9ef;
}
.manual-booking-box h3 { margin: 0 0 6px; }
.manual-booking-box p { margin: 0 0 14px; color: #657586; line-height: 1.55; }

@media (max-width: 760px) {
  .site-menu { top: 10px; left: 10px; right: 10px; }
  .site-menu .menu-toggle,
  .site-menu .admin-icon-link {
    width: 43px !important;
    height: 43px !important;
    min-width: 43px !important;
    min-height: 43px !important;
  }
  .site-menu .hamburger-line { width: 22px !important; }
  .menu-panel {
    top: 54px;
    width: calc(100vw - 20px);
    border-radius: 24px;
  }
  .menu-panel a { min-height: 46px; }
  .admin-calendar-title-row,
  .admin-calendar-controls { align-items: stretch; flex-direction: column; }
  .admin-calendar-controls strong { width: 100%; }
  .admin-calendar-controls .month-arrow { width: 100%; border-radius: 16px; }
  .admin-day-slot { grid-template-columns: 1fr; }
}

/* v5 refinements */
.booking-section { scroll-margin-top: 0; }
.booking-section:not(.is-hidden) { min-height: 100vh; padding-top: clamp(32px, 5vw, 64px); }
.booking-section:not(.is-hidden) .booking-grid { align-items: start; }
.calendar-panel { position: relative; }
.calendar-panel .legend { margin: 14px 0 0; justify-content: center; gap: 7px; }
.calendar-panel .legend span { padding: 6px 9px; font-size: .78rem; opacity: .92; }
.reservation-live-summary { position: sticky; top: 14px; z-index: 20; max-width: 980px; margin-left: auto; margin-right: auto; border: 1px solid rgba(13, 55, 83, .16); box-shadow: 0 16px 35px rgba(4, 23, 38, .14); }
.reservation-live-summary.active { background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(232,248,255,.98)); }
.day-cell.has-pending, .slot-btn.pending { animation: yellowPulse 1s ease-in-out infinite; border-color: rgba(225, 173, 1, .85) !important; }
.slot-btn.pending { cursor: pointer; }
.pending-warning { grid-column: 1 / -1; display: block; margin-top: 10px; padding: 8px 10px; border-radius: 14px; background: rgba(255, 213, 79, .22); color: #745300; font-style: normal; font-weight: 800; animation: softAttention 1.4s ease-in-out infinite; }
@keyframes yellowPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, .44); } 50% { box-shadow: 0 0 0 8px rgba(255, 193, 7, .06); } }
@keyframes softAttention { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1px); } }
.site-menu .admin-icon-link, .admin-icon-link { display: none !important; }
.month-checks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 12px 0; }
.month-check { display: flex !important; align-items: center; gap: 8px; padding: 9px 10px; border: 1px solid #dbe7ee; border-radius: 14px; background: #fff; font-size: .86rem; font-weight: 700; color: #334; }
.month-check input { width: auto !important; min-height: auto !important; accent-color: var(--aqua); }
.admin-login-card { overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.24); border: 1px solid rgba(255,255,255,.35); }
.login-content { backdrop-filter: blur(14px); }
.admin-card.clients-card { border: 1px solid rgba(42, 138, 160, .20); }
.clients-search input { min-width: min(420px, 100%); }
.admin-note.compact { margin: 5px 0 0; }
@media (max-width: 760px) {
  .booking-section:not(.is-hidden) { padding-left: 12px; padding-right: 12px; }
  .calendar-panel .legend { justify-content: flex-start; }
  .calendar-panel .legend span { font-size: .72rem; padding: 5px 7px; }
  .reservation-live-summary { top: 6px; font-size: .88rem; }
  .month-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .month-checks { grid-template-columns: 1fr; }
}

/* v6: navegación tipo app, un solo contenido en foco */
body.app-single-focus {
  min-height: 100svh;
  background: #f3f7fa;
}
body.app-single-focus .site-header {
  min-height: 0 !important;
  background: transparent !important;
}
body.app-single-focus .hero,
body.app-single-focus main > section {
  display: none;
}
body.app-single-focus[data-active-view="inicio"] .site-header {
  min-height: 100svh !important;
  background: var(--navy-950) !important;
}
body.app-single-focus[data-active-view="inicio"] .hero {
  display: grid;
  min-height: 100svh;
  animation: appViewFade .42s ease both;
}
body.app-single-focus main > section.active-focus {
  display: block;
  min-height: 100svh;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: clamp(88px, 9vw, 126px);
  padding-bottom: clamp(48px, 7vw, 86px);
  animation: appViewFade .42s ease both;
}
body.app-single-focus main > .intro-strip {
  display: none !important;
}
body.app-single-focus .content-section.active-focus,
body.app-single-focus .contact-section.active-focus,
body.app-single-focus .booking-section.active-focus {
  width: min(1180px, calc(100% - 32px));
}
body.app-single-focus .booking-section.active-focus {
  padding-top: clamp(76px, 8vw, 112px);
}
body.app-single-focus .scroll-cue {
  display: none;
}
@keyframes appViewFade {
  from { opacity: 0; transform: translateY(18px) scale(.985); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.menu-panel a.is-active {
  color: #fff;
  background: rgba(112,240,223,.13);
  box-shadow: inset 0 0 0 1px rgba(112,240,223,.18);
}
.focus-reserve-wrap {
  margin: clamp(24px, 4vw, 42px) auto 0;
  display: flex;
  justify-content: center;
}
.focus-reserve-btn {
  border: 0;
  min-width: min(360px, 100%);
  box-shadow: 0 18px 42px rgba(13, 110, 145, .20);
}
body.app-single-focus[data-active-view="tarifas"] .pricing-grid,
body.app-single-focus[data-active-view="faq"] .faq-grid,
body.app-single-focus[data-active-view="ubicacion"] .map-card,
body.app-single-focus[data-active-view="contacto"] .contact-card {
  animation: appViewFade .55s ease both;
}

/* v6: temporadas agrupadas en acordeón para administración simple */
.admin-prices {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.price-edit-card.price-accordion {
  padding: 0;
  overflow: hidden;
}
.price-accordion summary.season-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
}
.price-accordion summary.season-summary::-webkit-details-marker { display: none; }
.price-accordion summary.season-summary::after {
  content: 'Editar';
  flex: 0 0 auto;
  border: 1px solid #d9e6ed;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 850;
  color: #0d6e91;
  background: #fff;
}
.price-accordion[open] summary.season-summary::after { content: 'Cerrar'; }
.season-summary span {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.season-summary strong {
  color: var(--navy-950);
}
.season-summary small {
  color: #66788a;
  line-height: 1.35;
}
.season-summary b {
  color: #0d6e91;
  font-size: .86rem;
  white-space: nowrap;
}
.season-editor-body {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
  border-top: 1px solid #e5edf2;
}
@media (max-width: 760px) {
  body.app-single-focus main > section.active-focus {
    width: calc(100% - 20px) !important;
    padding-top: 74px;
  }
  .price-accordion summary.season-summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .season-summary b { white-space: normal; }
}

/* v7: navegación inferior tipo app + CTA premium con reflejo y partículas */
body {
  padding-bottom: 122px;
}

.app-tabbar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1600;
  width: min(760px, calc(100% - 30px));
  pointer-events: none;
}

.app-tabbar-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  padding: 28px 9px 9px;
  min-height: 82px;
  border: 1px solid rgba(148, 184, 204, .56);
  border-radius: 31px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 22px 62px rgba(2,16,29,.20), inset 0 1px 0 rgba(255,255,255,.76);
  pointer-events: auto;
  overflow: visible;
}

.app-tabbar-shell::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(232,245,252,.34));
  z-index: -1;
}

.app-tabbar a {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 20px;
  color: #2d3d4f;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.app-tabbar a:not(:last-of-type) {
  box-shadow: 1px 0 0 rgba(144, 173, 193, .26);
}

.app-tabbar .tab-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #0a9df1;
  background: rgba(10,157,241,.08);
  font-size: .92rem;
  line-height: 1;
}

.app-tabbar a:hover,
.app-tabbar a.is-active {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #0a9df1, #3f5df6);
  box-shadow: 0 12px 24px rgba(10,157,241,.22);
}

.app-tabbar a:hover .tab-icon,
.app-tabbar a.is-active .tab-icon {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.app-reserve-tab {
  position: absolute;
  left: 50%;
  top: -37px;
  transform: translateX(-50%);
  min-width: 226px;
  min-height: 67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 3px solid #0a9df1;
  border-radius: 999px;
  background: linear-gradient(135deg, #25c96f, #40d989 52%, #73f5b5);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: .01em;
  box-shadow: 0 20px 46px rgba(18, 173, 104, .32), 0 0 0 8px rgba(255,255,255,.86);
  overflow: hidden;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.app-reserve-tab strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  color: #20bc6b;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 9px 18px rgba(0,0,0,.13);
}

.app-reserve-tab::before {
  content: '';
  position: absolute;
  top: -70%;
  left: -38%;
  width: 26%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent);
  transform: rotate(22deg);
  animation: reserveShine 3s ease-in-out infinite;
}

.app-reserve-tab:hover,
.app-reserve-tab.is-active {
  transform: translateX(-50%) translateY(-4px);
  filter: saturate(1.12);
  box-shadow: 0 26px 58px rgba(18, 173, 104, .40), 0 0 0 8px rgba(255,255,255,.92), 0 0 34px rgba(115,245,181,.32);
}

.reserve-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 2px solid rgba(112,240,223,.82) !important;
  background: linear-gradient(135deg, rgba(13,110,145,.62), rgba(10,157,241,.46), rgba(112,240,223,.30)) !important;
  box-shadow: 0 26px 68px rgba(0,0,0,.35), 0 0 42px rgba(112,240,223,.18), inset 0 0 0 1px rgba(255,255,255,.14) !important;
  isolation: isolate;
}

.reserve-pill::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -65%;
  left: -35%;
  width: 22%;
  height: 230%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  transform: rotate(22deg);
  animation: reserveShine 2.65s ease-in-out infinite;
}

.reserve-pill::after {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(255,255,255,.34);
  border-radius: inherit;
  pointer-events: none;
}

.reserve-text {
  position: relative;
  z-index: 1;
  font-weight: 900;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}

.reserve-plus {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #0a9df1;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.reserve-pill.sparkling,
.app-reserve-tab.sparkling {
  animation: reserveClickPop .52s cubic-bezier(.2,.9,.22,1) both;
}

.magic-particle-burst {
  position: fixed;
  width: 1px;
  height: 1px;
  z-index: 2600;
  pointer-events: none;
}

.magic-particle-burst span {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 23%, #ffe693 24% 48%, rgba(112,240,223,.96) 49% 70%, transparent 72%);
  filter: drop-shadow(0 0 7px rgba(255,255,255,.95));
  animation: magicParticle .85s ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes reserveShine {
  0%, 42% { transform: translateX(0) rotate(22deg); opacity: 0; }
  52% { opacity: .95; }
  74%, 100% { transform: translateX(620%) rotate(22deg); opacity: 0; }
}

@keyframes reserveClickPop {
  0% { filter: brightness(1); }
  45% { filter: brightness(1.32) saturate(1.18); }
  100% { filter: brightness(1); }
}

@keyframes magicParticle {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(0); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(var(--dx) - 50%), calc(var(--dy) - 50%)) scale(.05) rotate(180deg); }
}

.hero-content {
  width: min(860px, calc(100% - 40px));
}

.hero h1 {
  text-wrap: balance;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 660px);
  padding: 9px 14px 9px 18px;
  border: 1px solid rgba(112,240,223,.26);
  border-radius: 999px;
  background: rgba(2,16,29,.26);
  backdrop-filter: blur(12px);
  color: #b9fff4;
  letter-spacing: .17em;
}

body.app-single-focus main > section.active-focus {
  border-radius: 36px;
}

body.app-single-focus .content-section.active-focus:not(.glass-section),
body.app-single-focus .contact-section.active-focus {
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(11,33,52,.08);
  box-shadow: 0 24px 68px rgba(16,49,75,.10);
  backdrop-filter: blur(18px);
  padding-left: clamp(18px, 4vw, 46px);
  padding-right: clamp(18px, 4vw, 46px);
}

body.app-single-focus .glass-section.active-focus {
  border: 1px solid rgba(11,33,52,.08);
  box-shadow: 0 24px 68px rgba(16,49,75,.10);
}

.floating-whatsapp {
  bottom: 122px !important;
}

.weather-clock {
  bottom: 122px !important;
}

.toast {
  bottom: 132px !important;
}

@media (max-width: 760px) {
  body { padding-bottom: 112px; }
  .app-tabbar {
    width: calc(100% - 14px);
    bottom: 8px;
  }
  .app-tabbar-shell {
    min-height: 78px;
    padding: 27px 5px 6px;
    border-radius: 26px;
  }
  .app-tabbar a {
    min-height: 44px;
    border-radius: 16px;
    font-size: .67rem;
    gap: 3px;
  }
  .app-tabbar .tab-icon {
    width: 22px;
    height: 22px;
    font-size: .82rem;
  }
  .app-reserve-tab {
    top: -33px;
    min-width: 178px;
    min-height: 58px;
    gap: 12px;
    font-size: .95rem;
    border-width: 2px;
    box-shadow: 0 18px 38px rgba(18,173,104,.32), 0 0 0 6px rgba(255,255,255,.90);
  }
  .app-reserve-tab strong {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 1.65rem;
  }
  .reserve-pill {
    gap: 12px;
  }
  .reserve-plus {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 1.5rem;
  }
  .floating-whatsapp {
    right: 10px;
    bottom: 106px !important;
  }
  .weather-clock {
    left: 10px;
    bottom: 106px !important;
  }
  .toast {
    bottom: 112px !important;
  }
}

@media (max-width: 430px) {
  .app-tabbar-shell {
    padding-left: 3px;
    padding-right: 3px;
  }
  .app-tabbar a {
    font-size: .61rem;
    letter-spacing: -.03em;
  }
  .app-tabbar .tab-icon {
    width: 20px;
    height: 20px;
  }
  .app-reserve-tab {
    min-width: 154px;
    min-height: 54px;
  }
  .app-reserve-tab span { font-size: .86rem; }
  .app-reserve-tab strong {
    width: 29px;
    height: 29px;
    font-size: 1.45rem;
  }
  .hero .eyebrow {
    letter-spacing: .10em;
    font-size: .66rem;
  }
}

@media (max-width: 360px) {
  .app-tabbar a span:last-child {
    display: none;
  }
  .app-tabbar a {
    min-height: 40px;
  }
}

/* v8: CTA texto premium + botonera app responsive, integrada y centrada */
:root {
  --app-blue: #0a9df1;
  --app-blue-2: #3f5df6;
  --app-green: #23cf73;
  --app-green-2: #78f6ba;
}

body {
  padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

/* Botón principal debajo del titular: texto con pulso suave */
.reserve-pill {
  position: absolute !important;
  left: 50% !important;
  top: calc(50% + clamp(145px, 18vh, 205px)) !important;
  bottom: auto !important;
  transform: translateX(-50%) scale(1) !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 10px 16px 14px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  isolation: isolate;
  cursor: pointer;
  animation: reserveTextZoom 2.1s ease-in-out infinite;
}

.reserve-pill:hover {
  transform: translateX(-50%) scale(1.08) !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: brightness(1.18);
}

.reserve-pill::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -22%;
  top: -12%;
  width: 32%;
  height: 124%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.92), transparent);
  transform: rotate(18deg) translateX(-180%);
  animation: reserveTextSlash 2.85s ease-in-out infinite;
  opacity: .82;
  pointer-events: none;
}

.reserve-pill::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--aqua), #fff, var(--app-blue), transparent);
  box-shadow: 0 0 18px rgba(112,240,223,.72);
  transform-origin: center;
  animation: reserveUnderline 2.1s ease-in-out infinite;
  pointer-events: none;
}

.reserve-text {
  position: relative;
  z-index: 1;
  font-size: clamp(1.18rem, 2.35vw, 2.05rem);
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.46), 0 0 18px rgba(112,240,223,.32);
  white-space: nowrap;
}

.reserve-plus { display: none !important; }

.reserve-pill.sparkling,
.app-reserve-tab.sparkling {
  animation: reserveClickPop .52s cubic-bezier(.2,.9,.22,1) both;
}

@keyframes reserveTextZoom {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.07); }
}

@keyframes reserveTextSlash {
  0%, 38% { transform: rotate(18deg) translateX(-210%); opacity: 0; }
  48% { opacity: .95; }
  72%, 100% { transform: rotate(18deg) translateX(520%); opacity: 0; }
}

@keyframes reserveUnderline {
  0%, 100% { transform: scaleX(.72); opacity: .58; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Botonera inferior: estilo app, sólida, responsive y sin cruzarse */
.app-tabbar {
  left: 50% !important;
  right: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(820px, calc(100vw - 24px)) !important;
  z-index: 1700;
  pointer-events: none;
}

.app-tabbar-shell {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 50px 56px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 10px !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  border-radius: 32px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(234,246,253,.90)) !important;
  backdrop-filter: blur(26px) saturate(1.1) !important;
  box-shadow: 0 24px 70px rgba(2,16,29,.24), inset 0 1px 0 rgba(255,255,255,.92) !important;
  overflow: visible !important;
  pointer-events: auto;
}

.app-tabbar-shell::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(13,110,145,.05));
  z-index: -1;
}

.app-tabbar-shell::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,157,241,.20), transparent);
  pointer-events: none;
}

.app-tabbar a,
.app-reserve-tab {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 100% !important;
  border-radius: 18px !important;
  border: 1px solid rgba(10,157,241,.12) !important;
  text-decoration: none;
}

.app-tabbar a {
  grid-row: 2;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 5px 3px !important;
  color: #17334b !important;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(239,248,253,.84)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62), 0 6px 16px rgba(2,16,29,.045) !important;
  font-size: clamp(.63rem, 1.55vw, .78rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.025em !important;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease !important;
}

.app-tabbar a:nth-of-type(1) { grid-column: 1; }
.app-tabbar a:nth-of-type(2) { grid-column: 2; }
.app-tabbar a:nth-of-type(3) { grid-column: 3; }
.app-tabbar a:nth-of-type(4) { grid-column: 4; }
.app-tabbar a:nth-of-type(5) { grid-column: 5; }

.app-tabbar a:not(:last-of-type) { box-shadow: inset 0 0 0 1px rgba(255,255,255,.62), 0 6px 16px rgba(2,16,29,.045) !important; }

.app-tabbar .tab-icon {
  width: clamp(20px, 4.8vw, 25px) !important;
  height: clamp(20px, 4.8vw, 25px) !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  color: var(--app-blue) !important;
  background: rgba(10,157,241,.10) !important;
  font-size: clamp(.76rem, 3.4vw, .95rem) !important;
  line-height: 1 !important;
  box-shadow: inset 0 0 0 1px rgba(10,157,241,.08) !important;
}

.app-tabbar a:hover,
.app-tabbar a.is-active {
  transform: translateY(-2px) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.42) !important;
  background: linear-gradient(135deg, var(--app-blue), var(--app-blue-2)) !important;
  box-shadow: 0 12px 28px rgba(10,157,241,.25), inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.app-tabbar a:hover .tab-icon,
.app-tabbar a.is-active .tab-icon {
  color: #fff !important;
  background: rgba(255,255,255,.18) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15) !important;
}

.app-reserve-tab {
  grid-column: 2 / 5;
  grid-row: 1;
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: translateY(-12px) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, 2vw, 14px) !important;
  padding: 0 14px !important;
  border: 2px solid rgba(10,157,241,.82) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #17be6a, #30d880 52%, #7af6bd) !important;
  color: #fff !important;
  font-size: clamp(.88rem, 2.2vw, 1.1rem) !important;
  font-weight: 950 !important;
  letter-spacing: -.01em !important;
  box-shadow: 0 18px 42px rgba(23,190,106,.34), 0 0 0 7px rgba(255,255,255,.78), inset 0 1px 0 rgba(255,255,255,.30) !important;
  overflow: hidden !important;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease !important;
}

.app-reserve-tab strong {
  flex: 0 0 auto;
  width: clamp(28px, 6.4vw, 36px) !important;
  height: clamp(28px, 6.4vw, 36px) !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,.96) !important;
  color: #1fc36d !important;
  font-size: clamp(1.35rem, 5vw, 1.9rem) !important;
  line-height: .8 !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.14) !important;
}

.app-reserve-tab::before {
  content: '';
  position: absolute;
  top: -80%;
  left: -34%;
  width: 22%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.84), transparent);
  transform: rotate(22deg);
  animation: reserveShine 3s ease-in-out infinite;
}

.app-reserve-tab:hover,
.app-reserve-tab.is-active {
  transform: translateY(-15px) !important;
  filter: saturate(1.15) brightness(1.03) !important;
  box-shadow: 0 24px 54px rgba(23,190,106,.44), 0 0 0 7px rgba(255,255,255,.86), 0 0 30px rgba(122,246,189,.35), inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.floating-whatsapp { bottom: calc(158px + env(safe-area-inset-bottom, 0px)) !important; }
.weather-clock { bottom: calc(158px + env(safe-area-inset-bottom, 0px)) !important; }
.toast { bottom: calc(168px + env(safe-area-inset-bottom, 0px)) !important; }

@media (max-width: 760px) {
  body { padding-bottom: calc(134px + env(safe-area-inset-bottom, 0px)); }
  .app-tabbar {
    width: calc(100vw - 12px) !important;
    bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  }
  .app-tabbar-shell {
    grid-template-rows: 45px 52px !important;
    gap: 7px !important;
    padding: 8px 6px 7px !important;
    border-radius: 27px !important;
  }
  .app-tabbar-shell::after { top: 58px; left: 10px; right: 10px; }
  .app-reserve-tab { grid-column: 2 / 5; transform: translateY(-10px) !important; }
  .app-reserve-tab:hover,
  .app-reserve-tab.is-active { transform: translateY(-12px) !important; }
  .floating-whatsapp { right: 8px; bottom: calc(142px + env(safe-area-inset-bottom, 0px)) !important; }
  .weather-clock { left: 8px; bottom: calc(142px + env(safe-area-inset-bottom, 0px)) !important; }
  .toast { bottom: calc(150px + env(safe-area-inset-bottom, 0px)) !important; }
  .reserve-pill { top: calc(50% + clamp(120px, 18vh, 170px)) !important; }
}

@media (max-width: 430px) {
  body { padding-bottom: calc(128px + env(safe-area-inset-bottom, 0px)); }
  .app-tabbar { width: calc(100vw - 8px) !important; }
  .app-tabbar-shell {
    grid-template-rows: 42px 50px !important;
    gap: 6px !important;
    padding: 7px 4px 6px !important;
    border-radius: 24px !important;
  }
  .app-tabbar a {
    border-radius: 15px !important;
    gap: 2px !important;
    padding-inline: 1px !important;
  }
  .app-tabbar a span:last-child {
    display: inline !important;
    font-size: clamp(.56rem, 2.72vw, .66rem) !important;
  }
  .app-reserve-tab {
    grid-column: 2 / 5;
    gap: 7px !important;
    padding-inline: 8px !important;
    transform: translateY(-9px) !important;
  }
  .app-reserve-tab span { font-size: clamp(.82rem, 3.8vw, .95rem) !important; }
  .floating-whatsapp,
  .weather-clock { bottom: calc(134px + env(safe-area-inset-bottom, 0px)) !important; }
  .toast { bottom: calc(142px + env(safe-area-inset-bottom, 0px)) !important; }
}

@media (max-width: 360px) {
  .app-tabbar a span:last-child { display: inline !important; }
  .app-tabbar a { min-height: 0 !important; }
  .app-tabbar .tab-icon { width: 18px !important; height: 18px !important; font-size: .68rem !important; }
  .app-tabbar a span:last-child { font-size: .52rem !important; }
  .app-reserve-tab span { font-size: .78rem !important; }
}

/* =========================================================
   V9 ajustes visual app: estado superior, CTA texto y tabbar
   ========================================================= */
:root {
  --v9-blue: #0798f2;
  --v9-blue-2: #3f61f4;
  --v9-cyan: #6ef6e7;
  --v9-green: #2fca76;
  --v9-text: #102b42;
}

/* Estado superior liviano: siempre visible, centrado y sin fondo pesado */
.top-status-bar {
  position: fixed;
  top: max(10px, env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1900;
  width: min(calc(100vw - 28px), 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 18px);
  pointer-events: none;
}

.top-status-bar .weather-clock,
.top-status-bar .floating-whatsapp {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  pointer-events: auto;
}

.top-status-bar .weather-clock {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}

.top-status-bar .weather-emoji {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.26));
}

.top-status-bar .weather-clock strong {
  display: block;
  color: #fff !important;
  font-size: clamp(.86rem, 1.5vw, 1rem) !important;
  line-height: 1.05;
}

.top-status-bar .weather-clock small {
  display: block;
  color: rgba(255,255,255,.85) !important;
  font-size: clamp(.66rem, 1.2vw, .78rem) !important;
  line-height: 1.15;
  white-space: nowrap;
}

.top-status-bar .floating-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}

.top-status-bar .floating-whatsapp strong {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #30e47c;
  font-size: .98rem;
}

.top-status-bar .floating-whatsapp span {
  display: inline !important;
  white-space: nowrap;
  font-size: clamp(.68rem, 1.3vw, .84rem);
}

/* El CTA principal deja de parecer un bloque pesado y pasa a ser texto con acción */
.reserve-pill {
  width: auto !important;
  min-width: 0 !important;
  max-width: calc(100vw - 28px) !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible !important;
  animation: reserveTextPulseV9 2.3s ease-in-out infinite !important;
  text-transform: none !important;
}

.reserve-pill:hover {
  transform: translateX(-50%) scale(1.08) !important;
  filter: none !important;
}

.reserve-pill::before {
  top: 0 !important;
  bottom: 0 !important;
  width: 28px !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.96), transparent) !important;
  animation: reserveTextSlashV9 2.9s ease-in-out infinite !important;
}

.reserve-pill::after {
  left: 12px !important;
  right: 12px !important;
  bottom: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--v9-cyan), #fff, var(--v9-cyan), transparent) !important;
  box-shadow: 0 0 18px rgba(110,246,231,.72) !important;
}

.reserve-text {
  font-size: clamp(1.15rem, 2.5vw, 2rem) !important;
  font-weight: 1000 !important;
  color: #fff !important;
  letter-spacing: .015em !important;
  text-shadow: 0 4px 20px rgba(0,0,0,.62), 0 0 16px rgba(110,246,231,.35) !important;
}

@keyframes reserveTextPulseV9 {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.075); }
}

@keyframes reserveTextSlashV9 {
  0%, 35% { transform: rotate(18deg) translateX(-260%); opacity: 0; }
  48% { opacity: .92; }
  78%, 100% { transform: rotate(18deg) translateX(620%); opacity: 0; }
}

/* Nueva botonera inferior tipo app: una sola cápsula, segmentos limpios y botón central elevado */
.app-tabbar {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(760px, calc(100vw - 22px)) !important;
  z-index: 1750 !important;
  pointer-events: none !important;
}

.app-tabbar-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 54px 54px !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 8px !important;
  border: 1px solid rgba(255,255,255,.74) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,248,255,.91)) !important;
  box-shadow: 0 24px 64px rgba(0, 15, 31, .25), inset 0 1px 0 rgba(255,255,255,.95) !important;
  backdrop-filter: blur(24px) saturate(1.15) !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

.app-tabbar-shell::before,
.app-tabbar-shell::after {
  content: none !important;
  display: none !important;
}

.app-tabbar a {
  grid-row: 2 !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 3px !important;
  padding: 5px 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #35445a !important;
  box-shadow: none !important;
  font-size: clamp(.62rem, 1.52vw, .78rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.02em !important;
  text-decoration: none !important;
  position: relative !important;
  transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

.app-tabbar a + a::before {
  content: '' !important;
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(14, 67, 101, .14);
}

.app-tabbar a:nth-of-type(1) { grid-column: 1 !important; border-radius: 20px 0 0 20px !important; }
.app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
.app-tabbar a:nth-of-type(3) { grid-column: 3 !important; }
.app-tabbar a:nth-of-type(4) { grid-column: 4 !important; }
.app-tabbar a:nth-of-type(5) { grid-column: 5 !important; border-radius: 0 20px 20px 0 !important; }

.app-tabbar .tab-icon {
  width: auto !important;
  height: auto !important;
  display: block !important;
  color: currentColor !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-size: clamp(.82rem, 2.45vw, 1rem) !important;
  line-height: 1 !important;
}

.app-tabbar a:hover,
.app-tabbar a.is-active {
  transform: none !important;
  color: #fff !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--v9-blue), var(--v9-blue-2)) !important;
  box-shadow: 0 10px 24px rgba(7,152,242,.24), inset 0 1px 0 rgba(255,255,255,.24) !important;
}

.app-tabbar a:hover::before,
.app-tabbar a.is-active::before,
.app-tabbar a:hover + a::before,
.app-tabbar a.is-active + a::before {
  opacity: 0;
}

.app-tabbar a:hover .tab-icon,
.app-tabbar a.is-active .tab-icon {
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
}

.app-reserve-tab {
  grid-column: 2 / 5 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(360px, 100%) !important;
  height: 48px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 0 18px !important;
  border: 2px solid rgba(7,152,242,.92) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #26c36f, #37d783 56%, #83f2b9) !important;
  color: #fff !important;
  font-size: clamp(.9rem, 2.1vw, 1.08rem) !important;
  font-weight: 1000 !important;
  letter-spacing: .01em !important;
  box-shadow: 0 14px 32px rgba(38,195,111,.34), 0 0 0 6px rgba(255,255,255,.94), inset 0 1px 0 rgba(255,255,255,.32) !important;
  transform: translateY(-10px) !important;
  overflow: hidden !important;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease !important;
}

.app-reserve-tab strong {
  width: 31px !important;
  height: 31px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 9px !important;
  background: rgba(255,255,255,.96) !important;
  color: #27c16f !important;
  font-size: 1.75rem !important;
  line-height: .8 !important;
  box-shadow: 0 6px 14px rgba(0,0,0,.14) !important;
}

.app-reserve-tab:hover,
.app-reserve-tab.is-active {
  transform: translateY(-12px) !important;
  filter: saturate(1.12) brightness(1.04) !important;
  box-shadow: 0 18px 42px rgba(38,195,111,.44), 0 0 0 6px rgba(255,255,255,.98), inset 0 1px 0 rgba(255,255,255,.35) !important;
}

/* Cuando el usuario ya está en el calendario, no mostramos Reservar + para no confundir */
body[data-active-view="reservas"] .app-reserve-tab {
  display: none !important;
}

body[data-active-view="reservas"] .app-tabbar-shell {
  grid-template-rows: 56px !important;
  padding: 8px !important;
}

body[data-active-view="reservas"] .app-tabbar a {
  grid-row: 1 !important;
}

body[data-active-view="reservas"] .toast {
  bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
}

/* Como el soporte y el clima están arriba, liberamos la visual inferior */
.floating-whatsapp,
.weather-clock {
  bottom: auto !important;
}

body {
  padding-top: max(42px, env(safe-area-inset-top, 0px)) !important;
}

.hero {
  min-height: calc(100svh - max(42px, env(safe-area-inset-top, 0px))) !important;
}

@media (max-width: 760px) {
  .top-status-bar {
    top: max(7px, env(safe-area-inset-top, 0px));
    width: calc(100vw - 18px);
    gap: 10px;
  }

  .top-status-bar .weather-clock {
    gap: 5px;
  }

  .top-status-bar .weather-emoji {
    width: 22px;
    height: 22px;
    font-size: .95rem;
  }

  .top-status-bar .floating-whatsapp span {
    font-size: .68rem;
  }

  .app-tabbar {
    width: calc(100vw - 12px) !important;
    bottom: max(7px, env(safe-area-inset-bottom, 0px)) !important;
  }

  .app-tabbar-shell {
    grid-template-rows: 48px 50px !important;
    border-radius: 24px !important;
    padding: 6px !important;
  }

  .app-tabbar a {
    font-size: clamp(.54rem, 2.25vw, .68rem) !important;
    gap: 2px !important;
  }

  .app-tabbar .tab-icon {
    font-size: clamp(.72rem, 3vw, .9rem) !important;
  }

  .app-reserve-tab {
    height: 44px !important;
    width: min(300px, 100%) !important;
    transform: translateY(-9px) !important;
    border-radius: 20px !important;
  }

  .app-reserve-tab span {
    font-size: clamp(.82rem, 3.35vw, .96rem) !important;
  }

  .app-reserve-tab strong {
    width: 28px !important;
    height: 28px !important;
    font-size: 1.55rem !important;
  }

  body[data-active-view="reservas"] .app-tabbar-shell {
    grid-template-rows: 50px !important;
  }
}

@media (max-width: 430px) {
  .top-status-bar {
    width: calc(100vw - 12px);
    gap: 8px;
  }

  .top-status-bar .floating-whatsapp span {
    font-size: .6rem;
  }

  .top-status-bar .floating-whatsapp strong {
    display: none !important;
  }

  .top-status-bar .weather-clock small {
    font-size: .6rem !important;
  }

  .top-status-bar .weather-clock strong {
    font-size: .78rem !important;
  }

  .app-tabbar { width: calc(100vw - 8px) !important; }

  .app-tabbar-shell {
    grid-template-rows: 44px 46px !important;
    padding: 5px !important;
    border-radius: 21px !important;
  }

  .app-tabbar a:nth-of-type(1) { border-radius: 16px 0 0 16px !important; }
  .app-tabbar a:nth-of-type(5) { border-radius: 0 16px 16px 0 !important; }

  .app-tabbar a span:last-child {
    display: inline !important;
    font-size: clamp(.5rem, 2.5vw, .6rem) !important;
  }

  .app-reserve-tab {
    grid-column: 1 / 6 !important;
    width: min(280px, calc(100% - 34px)) !important;
    height: 42px !important;
    gap: 8px !important;
    padding-inline: 12px !important;
  }

  body[data-active-view="reservas"] .app-tabbar-shell {
    grid-template-rows: 46px !important;
  }
}

@media (max-width: 360px) {
  .top-status-bar .floating-whatsapp span { font-size: .55rem; }
  .top-status-bar .weather-clock small { max-width: 116px; overflow: hidden; text-overflow: ellipsis; }
  .app-tabbar a span:last-child { font-size: .49rem !important; }
  .app-tabbar .tab-icon { font-size: .68rem !important; }
}

/* v10: top status horizontal + tabbar app refined */
:root {
  --v10-blue: #0798f2;
  --v10-blue-2: #3863ff;
  --v10-aqua: #45d9c6;
  --v10-green: #32ca78;
  --v10-ink: #0a2438;
}

/* Barra superior liviana: clima, fecha, hora y soporte horizontal */
.top-status-bar {
  position: fixed !important;
  top: max(8px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  z-index: 14 !important;
  width: min(760px, calc(100vw - 24px)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, 1.5vw, 16px) !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  opacity: .92 !important;
}

.top-status-bar .weather-clock,
.top-status-bar .floating-whatsapp {
  position: static !important;
  transform: none !important;
  pointer-events: auto !important;
}

.top-status-bar .weather-clock {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(5px, 1vw, 10px) !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.86) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.42) !important;
  white-space: nowrap !important;
  font-size: clamp(.68rem, 1.2vw, .86rem) !important;
  line-height: 1 !important;
}

body:not([data-active-view="inicio"]) .top-status-bar .weather-clock {
  color: rgba(7,30,46,.62) !important;
  text-shadow: none !important;
}

.top-status-bar .weather-emoji {
  width: auto !important;
  height: auto !important;
  display: inline !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: clamp(.92rem, 1.5vw, 1.1rem) !important;
  box-shadow: none !important;
}

.top-status-bar .weather-clock strong,
.top-status-bar .weather-clock span,
.top-status-bar .weather-clock small {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.top-status-bar .weather-clock strong {
  font-weight: 900 !important;
}

.status-separator {
  opacity: .45 !important;
}

.top-status-bar .floating-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  height: 28px !important;
  min-height: 0 !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  background: rgba(27, 202, 111, .92) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.14) !important;
  backdrop-filter: blur(8px) !important;
  font-size: clamp(.66rem, 1.15vw, .78rem) !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.top-status-bar .floating-whatsapp strong {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: .95em !important;
}

/* La leyenda viva de reserva queda por encima de clima/soporte cuando el usuario está reservando */
.reservation-live-summary {
  z-index: 60 !important;
  top: max(10px, env(safe-area-inset-top, 0px)) !important;
  backdrop-filter: blur(16px) !important;
}

body[data-active-view="reservas"] .top-status-bar {
  z-index: 10 !important;
  opacity: .46 !important;
}

body[data-active-view="reservas"] .reservation-live-summary {
  box-shadow: 0 18px 50px rgba(4, 23, 38, .18) !important;
}

/* Quitamos cualquier CTA secundaria generada en secciones informativas */
.focus-reserve-wrap,
.focus-reserve-btn {
  display: none !important;
}

/* Botonera inferior tipo app: una sola pieza, cinco botones, centro reservado y elevado */
.app-tabbar {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  z-index: 1600 !important;
  width: min(720px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  pointer-events: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.app-tabbar-shell {
  pointer-events: auto !important;
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  height: clamp(62px, 8vw, 76px) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 1fr !important;
  align-items: end !important;
  gap: 0 !important;
  padding: 7px !important;
  overflow: visible !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.96) !important;
  border: 1.5px solid rgba(7,152,242,.38) !important;
  box-shadow: 0 18px 45px rgba(3,18,31,.18), inset 0 1px 0 rgba(255,255,255,.96) !important;
  backdrop-filter: blur(18px) saturate(1.2) !important;
}

.app-tabbar-shell::before,
.app-tabbar-shell::after {
  display: none !important;
}

.app-tabbar a {
  position: relative !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(10,36,56,.72) !important;
  text-decoration: none !important;
  font-size: clamp(.62rem, 1.4vw, .78rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  box-shadow: none !important;
  overflow: visible !important;
  isolation: isolate !important;
  transition: color .22s ease, transform .22s ease, filter .22s ease !important;
}

.app-tabbar a:nth-of-type(1) { grid-column: 1 !important; border-radius: 999px 0 0 999px !important; }
.app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
.app-tabbar a:nth-of-type(3) { grid-column: 3 !important; }
.app-tabbar a:nth-of-type(4) { grid-column: 4 !important; }
.app-tabbar a:nth-of-type(5) { grid-column: 5 !important; border-radius: 0 999px 999px 0 !important; }

.app-tabbar a:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 12% !important;
  bottom: 12% !important;
  width: 1px !important;
  background: rgba(7,152,242,.18) !important;
  pointer-events: none !important;
}

.app-tabbar a::before {
  content: '' !important;
  position: absolute !important;
  inset: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--v10-blue), var(--v10-blue-2)) !important;
  opacity: 0 !important;
  z-index: -1 !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

.app-tabbar .tab-icon {
  width: clamp(18px, 3vw, 24px) !important;
  height: clamp(18px, 3vw, 24px) !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(7,152,242,.08) !important;
  color: var(--v10-blue) !important;
  font-size: clamp(.72rem, 1.65vw, .95rem) !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition: background .22s ease, color .22s ease, transform .22s ease !important;
}

.app-tabbar a span:last-child {
  display: inline !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: inherit !important;
}

.app-tabbar a:hover:not(.app-center-reserve)::before,
.app-tabbar a.is-active:not(.app-center-reserve)::before {
  opacity: 1 !important;
}

.app-tabbar a:hover:not(.app-center-reserve),
.app-tabbar a.is-active:not(.app-center-reserve) {
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.app-tabbar a:hover:not(.app-center-reserve) .tab-icon,
.app-tabbar a.is-active:not(.app-center-reserve) .tab-icon {
  background: rgba(255,255,255,.20) !important;
  color: #fff !important;
}

.app-tabbar a.app-center-reserve {
  height: clamp(70px, 9vw, 88px) !important;
  margin-top: calc(clamp(18px, 3.6vw, 28px) * -1) !important;
  transform: translateY(-14px) !important;
  border-radius: 28px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #16a6f5 0%, #24d3b8 58%, #31cc77 100%) !important;
  border: 2px solid rgba(255,255,255,.96) !important;
  box-shadow: 0 18px 36px rgba(19,176,190,.32), 0 0 0 4px rgba(7,152,242,.18), inset 0 1px 0 rgba(255,255,255,.38) !important;
  overflow: hidden !important;
}

.app-tabbar a.app-center-reserve::before {
  display: none !important;
}

.app-tabbar a.app-center-reserve::after {
  content: '' !important;
  position: absolute !important;
  top: -45% !important;
  left: -80% !important;
  width: 46% !important;
  height: 210% !important;
  transform: rotate(24deg) !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent) !important;
  animation: reserveTabShine 2.8s ease-in-out infinite !important;
  pointer-events: none !important;
}

.app-tabbar a.app-center-reserve .tab-icon {
  width: clamp(25px, 4.2vw, 34px) !important;
  height: clamp(25px, 4.2vw, 34px) !important;
  border-radius: 11px !important;
  background: rgba(255,255,255,.96) !important;
  color: #19aeea !important;
  font-size: clamp(1.25rem, 3vw, 1.85rem) !important;
  font-weight: 1000 !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.15) !important;
}

.app-tabbar a.app-center-reserve span:last-child {
  font-size: clamp(.7rem, 1.6vw, .9rem) !important;
  text-transform: none !important;
}

.app-tabbar a.app-center-reserve:hover,
.app-tabbar a.app-center-reserve.is-active {
  color: #fff !important;
  transform: translateY(-17px) scale(1.015) !important;
  filter: saturate(1.12) brightness(1.04) !important;
}

@keyframes reserveTabShine {
  0%, 48% { left: -85%; opacity: 0; }
  58% { opacity: .95; }
  76%, 100% { left: 135%; opacity: 0; }
}

/* Ya no existe el botón viejo; ante cualquier copia antigua, lo anulamos */
.app-reserve-tab {
  display: none !important;
}

body[data-active-view="reservas"] .app-tabbar-shell {
  grid-template-rows: 1fr !important;
  padding: 7px !important;
}

body[data-active-view="reservas"] .app-tabbar a {
  grid-row: 1 !important;
}

/* El panel lateral queda como destino claro al tocar una fecha con horarios */
.slot-list {
  scroll-margin-top: 92px !important;
}

@media (max-width: 760px) {
  body {
    padding-top: max(34px, env(safe-area-inset-top, 0px)) !important;
  }

  .top-status-bar {
    width: calc(100vw - 14px) !important;
    gap: 8px !important;
  }

  .top-status-bar .weather-clock {
    gap: 5px !important;
    font-size: clamp(.58rem, 2.25vw, .72rem) !important;
  }

  .top-status-bar .floating-whatsapp {
    height: 25px !important;
    padding: 0 8px !important;
    font-size: clamp(.56rem, 2.1vw, .68rem) !important;
  }

  .app-tabbar {
    width: calc(100vw - 10px) !important;
    max-width: calc(100vw - 10px) !important;
    bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  }

  .app-tabbar-shell {
    height: 62px !important;
    padding: 5px !important;
    border-radius: 999px !important;
  }

  .app-tabbar a {
    font-size: clamp(.52rem, 2.35vw, .66rem) !important;
    gap: 2px !important;
    padding: 0 2px !important;
  }

  .app-tabbar .tab-icon {
    width: clamp(17px, 5vw, 21px) !important;
    height: clamp(17px, 5vw, 21px) !important;
    font-size: clamp(.62rem, 2.7vw, .82rem) !important;
  }

  .app-tabbar a.app-center-reserve {
    height: 72px !important;
    transform: translateY(-12px) !important;
    border-radius: 22px !important;
  }

  .app-tabbar a.app-center-reserve:hover,
  .app-tabbar a.app-center-reserve.is-active {
    transform: translateY(-14px) scale(1.01) !important;
  }

  .app-tabbar a.app-center-reserve .tab-icon {
    width: 27px !important;
    height: 27px !important;
    font-size: 1.35rem !important;
    border-radius: 9px !important;
  }

  .app-tabbar a span:last-child {
    font-size: inherit !important;
  }
}

@media (max-width: 430px) {
  .top-status-bar {
    width: calc(100vw - 8px) !important;
    gap: 5px !important;
  }

  .top-status-bar .weather-clock {
    font-size: clamp(.52rem, 2.45vw, .62rem) !important;
    gap: 4px !important;
  }

  .top-status-bar .floating-whatsapp {
    padding: 0 7px !important;
    max-width: 34vw !important;
    overflow: hidden !important;
  }

  .top-status-bar .floating-whatsapp span {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .top-status-bar .floating-whatsapp strong {
    display: inline !important;
  }

  .app-tabbar-shell {
    height: 58px !important;
    padding: 4px !important;
  }

  .app-tabbar a {
    font-size: clamp(.46rem, 2.5vw, .58rem) !important;
  }

  .app-tabbar a.app-center-reserve {
    height: 68px !important;
    transform: translateY(-11px) !important;
  }

  .app-tabbar a.app-center-reserve span:last-child {
    font-size: clamp(.52rem, 2.6vw, .64rem) !important;
  }
}

@media (max-width: 360px) {
  .top-status-bar .status-separator:nth-of-type(2),
  .top-status-bar #localDate {
    display: none !important;
  }

  .app-tabbar a span:last-child {
    font-size: .47rem !important;
  }
}

/* ===============================
   v11 · Estética luxury minimal + ajustes finales solicitados
   =============================== */
:root {
  --lux-ink: #f7f7f2;
  --lux-muted: rgba(247,247,242,.72);
  --lux-line: rgba(247,247,242,.42);
  --lux-blue: #e9f3f7;
  --lux-dark: #071217;
  --lux-panel: rgba(245,247,246,.92);
  --lux-text: #12191d;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Avenir Next", "Montserrat", "Gill Sans", "Segoe UI", Arial, sans-serif !important;
  letter-spacing: .01em;
}

/* Inicio más editorial / minimalista, inspirado en la referencia */
.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,12,15,.68), rgba(3,12,15,.18) 52%, rgba(3,12,15,.58)),
    linear-gradient(180deg, rgba(4,16,22,.34), rgba(4,16,22,.78)) !important;
}
.hero-content {
  width: min(980px, calc(100vw - 42px)) !important;
  text-align: left !important;
  align-items: flex-start !important;
  left: clamp(26px, 7vw, 118px) !important;
  right: auto !important;
  transform: translateY(-50%) !important;
}
.hero h1 {
  max-width: 820px !important;
  text-align: left !important;
  text-transform: uppercase !important;
  letter-spacing: clamp(.10em, 1vw, .22em) !important;
  line-height: .98 !important;
  font-weight: 500 !important;
  font-size: clamp(2.45rem, 7vw, 6.45rem) !important;
  color: var(--lux-ink) !important;
  text-shadow: 0 12px 38px rgba(0,0,0,.52) !important;
}
.hero .eyebrow,
.eyebrow {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: rgba(235,248,249,.82) !important;
  font-size: clamp(.76rem, 1.2vw, 1.08rem) !important;
  letter-spacing: .42em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.eyebrow.dark {
  color: #47616a !important;
  letter-spacing: .22em !important;
}

/* CTA principal: texto/botón limpio, sin slash/reflejo; solo zoom suave */
.reserve-pill {
  left: clamp(26px, 7vw, 118px) !important;
  right: auto !important;
  top: calc(50% + clamp(122px, 22vh, 216px)) !important;
  bottom: auto !important;
  transform: none !important;
  padding: 16px clamp(22px, 3vw, 34px) !important;
  border: 1px solid var(--lux-line) !important;
  border-radius: 0 !important;
  background: rgba(2, 11, 15, .10) !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: none !important;
  animation: reserveMinimalZoomV11 2.25s ease-in-out infinite !important;
  overflow: visible !important;
}
.reserve-pill::before,
.reserve-pill::after { display: none !important; }
.reserve-pill:hover {
  transform: scale(1.045) !important;
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.78) !important;
}
.reserve-text {
  color: var(--lux-ink) !important;
  text-transform: uppercase !important;
  letter-spacing: .28em !important;
  font-size: clamp(.72rem, 1.15vw, 1rem) !important;
  font-weight: 600 !important;
  text-shadow: none !important;
}
@keyframes reserveMinimalZoomV11 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

/* Estado superior: una sola línea, liviano, arriba y separado del resumen de reserva */
.top-status-bar {
  position: fixed !important;
  top: max(10px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: calc(100vw - 24px) !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 95 !important;
  opacity: .88 !important;
  pointer-events: none !important;
}
.top-status-bar .weather-clock,
.top-status-bar .floating-whatsapp {
  pointer-events: auto !important;
}
.top-status-bar .weather-clock {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.76) !important;
  text-transform: uppercase !important;
  letter-spacing: .16em !important;
  font-size: clamp(.58rem, 1vw, .76rem) !important;
  white-space: nowrap !important;
}
.top-status-bar .weather-emoji {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  filter: grayscale(.15) brightness(1.1) !important;
}
.top-status-bar .weather-clock strong,
.top-status-bar .weather-clock span,
.top-status-bar .weather-clock small {
  color: rgba(255,255,255,.78) !important;
  white-space: nowrap !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.45) !important;
}
.top-status-bar .weather-clock strong {
  font-size: inherit !important;
  font-weight: 700 !important;
}
.top-status-bar .floating-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.78) !important;
  text-transform: uppercase !important;
  letter-spacing: .16em !important;
  font-size: clamp(.58rem, 1vw, .76rem) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}
.top-status-bar .floating-whatsapp strong {
  color: rgba(255,255,255,.78) !important;
  font-size: .84rem !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.45) !important;
}
.reservation-live-summary {
  z-index: 120 !important;
}
body[data-active-view="reservas"] .top-status-bar {
  z-index: 70 !important;
  opacity: .56 !important;
}
body[data-active-view="reservas"] .reservation-live-summary {
  position: sticky !important;
  top: max(48px, calc(env(safe-area-inset-top, 0px) + 48px)) !important;
  margin-top: 10px !important;
  margin-bottom: 14px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(12,26,34,.16) !important;
  background: rgba(252,252,249,.96) !important;
  color: #101820 !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.13) !important;
  letter-spacing: .04em !important;
}

/* Botonera inferior minimalista: una cápsula continua, centro elevado */
.app-tabbar {
  position: fixed !important;
  left: 50% !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(680px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
  z-index: 1700 !important;
  pointer-events: none !important;
}
.app-tabbar-shell {
  position: relative !important;
  height: clamp(64px, 9vw, 78px) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 1fr !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  border-radius: 30px !important;
  background: rgba(247,248,247,.90) !important;
  box-shadow: 0 20px 58px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  overflow: visible !important;
  pointer-events: auto !important;
}
.app-tabbar-shell::before,
.app-tabbar-shell::after { display: none !important; }
.app-tabbar a {
  grid-row: 1 !important;
  position: relative !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(13,22,28,.72) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  font-size: clamp(.54rem, 1.1vw, .68rem) !important;
  font-weight: 700 !important;
  transform: none !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
.app-tabbar a:nth-of-type(1) { grid-column: 1 !important; border-radius: 30px 0 0 30px !important; }
.app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
.app-tabbar a:nth-of-type(3) { grid-column: 3 !important; }
.app-tabbar a:nth-of-type(4) { grid-column: 4 !important; }
.app-tabbar a:nth-of-type(5) { grid-column: 5 !important; border-radius: 0 30px 30px 0 !important; }
.app-tabbar a:not(.app-center-reserve):not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 20% !important;
  bottom: 20% !important;
  width: 1px !important;
  background: rgba(16,30,38,.12) !important;
}
.app-tabbar .tab-icon {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: currentColor !important;
  font-size: clamp(.92rem, 2vw, 1.2rem) !important;
  line-height: 1 !important;
}
.app-tabbar a::before {
  content: '' !important;
  position: absolute !important;
  inset: 9px !important;
  border-radius: 22px !important;
  background: rgba(10,18,22,.08) !important;
  opacity: 0 !important;
  transform: scale(.96) !important;
  transition: opacity .22s ease, transform .22s ease !important;
  z-index: -1 !important;
}
.app-tabbar a:hover:not(.app-center-reserve)::before,
.app-tabbar a.is-active:not(.app-center-reserve)::before {
  opacity: 1 !important;
  transform: scale(1) !important;
}
.app-tabbar a:hover:not(.app-center-reserve),
.app-tabbar a.is-active:not(.app-center-reserve) {
  color: #071217 !important;
  transform: none !important;
}
.app-tabbar a.app-center-reserve {
  height: clamp(76px, 10vw, 92px) !important;
  margin-top: 0 !important;
  transform: translateY(clamp(-18px, -2.2vw, -12px)) !important;
  border: 1px solid rgba(255,255,255,.92) !important;
  border-radius: 24px !important;
  background: rgba(247,248,247,.96) !important;
  color: #071217 !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.96) !important;
  overflow: hidden !important;
}
.app-tabbar a.app-center-reserve::before { display: none !important; }
.app-tabbar a.app-center-reserve::after {
  content: '' !important;
  position: absolute !important;
  top: -40% !important;
  left: -85% !important;
  width: 42% !important;
  height: 190% !important;
  transform: rotate(22deg) !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.86), transparent) !important;
  animation: reserveTabMinimalShineV11 3.1s ease-in-out infinite !important;
  pointer-events: none !important;
}
.app-tabbar a.app-center-reserve .tab-icon {
  width: 28px !important;
  height: 28px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 9px !important;
  background: #071217 !important;
  color: #fff !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}
.app-tabbar a.app-center-reserve span:last-child {
  color: #071217 !important;
  font-size: clamp(.56rem, 1.15vw, .7rem) !important;
  letter-spacing: .10em !important;
}
.app-tabbar a.app-center-reserve:hover,
.app-tabbar a.app-center-reserve.is-active {
  transform: translateY(clamp(-21px, -2.4vw, -14px)) scale(1.015) !important;
  filter: none !important;
}
@keyframes reserveTabMinimalShineV11 {
  0%, 52% { left: -90%; opacity: 0; }
  62% { opacity: .88; }
  82%, 100% { left: 135%; opacity: 0; }
}

/* Cuando estamos en calendario, se oculta Reservar para no duplicar la acción */
body[data-active-view="reservas"] .app-tabbar-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
body[data-active-view="reservas"] .app-tabbar a.app-center-reserve {
  display: none !important;
}
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(1) { grid-column: 1 !important; border-radius: 30px 0 0 30px !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(4) { grid-column: 3 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(5) { grid-column: 4 !important; border-radius: 0 30px 30px 0 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(2)::after,
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(4)::after {
  content: '' !important;
  position: absolute !important;
  right: 0 !important;
  top: 20% !important;
  bottom: 20% !important;
  width: 1px !important;
  background: rgba(16,30,38,.12) !important;
}

/* Calendario también se adapta al estilo minimalista */
.booking-section,
.content-section,
.contact-section {
  font-family: "Avenir Next", "Montserrat", "Gill Sans", "Segoe UI", Arial, sans-serif !important;
}
.section-heading h2,
.calendar-panel h3,
.selected-date-box strong {
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
  font-weight: 600 !important;
}
.primary-btn,
.month-arrow,
.ghost-btn,
.slot-btn {
  border-radius: 0 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.slot-btn.selected {
  outline: 1px solid rgba(7,18,23,.82) !important;
  outline-offset: 3px !important;
}

@media (max-width: 760px) {
  .hero-content {
    left: 22px !important;
    width: calc(100vw - 44px) !important;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 4.65rem) !important;
    letter-spacing: .14em !important;
  }
  .hero .eyebrow {
    font-size: .68rem !important;
    letter-spacing: .28em !important;
  }
  .reserve-pill {
    left: 22px !important;
    top: calc(50% + 164px) !important;
    max-width: calc(100vw - 44px) !important;
    padding: 14px 18px !important;
  }
  .reserve-text {
    font-size: .68rem !important;
    letter-spacing: .18em !important;
  }
  .top-status-bar {
    top: max(8px, env(safe-area-inset-top, 0px)) !important;
    gap: 8px !important;
    max-width: calc(100vw - 12px) !important;
  }
  .top-status-bar .weather-clock,
  .top-status-bar .floating-whatsapp {
    font-size: clamp(.49rem, 2.35vw, .62rem) !important;
    letter-spacing: .08em !important;
    gap: 5px !important;
  }
  body[data-active-view="reservas"] .reservation-live-summary {
    top: max(42px, calc(env(safe-area-inset-top, 0px) + 42px)) !important;
    font-size: .78rem !important;
  }
  .app-tabbar {
    width: calc(100vw - 14px) !important;
    max-width: calc(100vw - 14px) !important;
    bottom: max(8px, env(safe-area-inset-bottom, 0px)) !important;
  }
  .app-tabbar-shell {
    height: 62px !important;
    border-radius: 22px !important;
  }
  .app-tabbar a {
    font-size: clamp(.45rem, 2.25vw, .58rem) !important;
    letter-spacing: .05em !important;
    gap: 4px !important;
  }
  .app-tabbar .tab-icon {
    font-size: clamp(.78rem, 4vw, 1.02rem) !important;
  }
  .app-tabbar a.app-center-reserve {
    height: 74px !important;
    border-radius: 20px !important;
    transform: translateY(-14px) !important;
  }
  .app-tabbar a.app-center-reserve .tab-icon {
    width: 25px !important;
    height: 25px !important;
    font-size: 1.2rem !important;
  }
}

@media (max-width: 430px) {
  .top-status-bar {
    gap: 6px !important;
  }
  .top-status-bar .weather-clock {
    max-width: 66vw !important;
    overflow: hidden !important;
  }
  .top-status-bar #localDate {
    display: none !important;
  }
  .top-status-bar .floating-whatsapp span {
    max-width: 22vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  .app-tabbar a span:last-child {
    font-size: clamp(.43rem, 2.35vw, .52rem) !important;
  }
}

/* =========================================================
   v12 · Ajustes finales: CTA centrado, botonera cuadrada y estilo uniforme
   ========================================================= */
:root {
  --sq-ink: #071217;
  --sq-cream: #f7f7f2;
  --sq-panel: rgba(247, 248, 247, .94);
  --sq-line: rgba(7, 18, 23, .18);
  --sq-line-light: rgba(255,255,255,.70);
  --sq-muted: #68747b;
  --sq-shadow: 0 18px 48px rgba(0,0,0,.18);
  --sq-blue: #0a9df1;
}

/* 1. CTA principal centrado y claramente clickeable */
.reserve-pill {
  left: 50% !important;
  right: auto !important;
  top: calc(50% + clamp(142px, 22vh, 226px)) !important;
  transform: translateX(-50%) scale(1) !important;
  padding: 15px clamp(24px, 4vw, 44px) !important;
  border: 1px solid rgba(247,247,242,.68) !important;
  background: rgba(2, 11, 15, .08) !important;
  color: var(--sq-cream) !important;
  min-width: min(360px, calc(100vw - 44px)) !important;
  text-align: center !important;
  justify-content: center !important;
  animation: reserveCenteredZoomV12 2.35s ease-in-out infinite !important;
}
.reserve-pill:hover {
  transform: translateX(-50%) scale(1.055) !important;
  background: rgba(247,247,242,.075) !important;
  border-color: rgba(247,247,242,.92) !important;
}
.reserve-text {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  letter-spacing: .26em !important;
}
@keyframes reserveCenteredZoomV12 {
  0%,100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.045); }
}

/* 2. Lenguaje visual cuadrado/minimalista en tarjetas, calendario, botones y formularios */
.calendar-panel,
.side-panel,
.price-card,
.faq-item,
.map-card,
.contact-card,
.faq-contact-card,
.selected-date-box,
.admin-card,
.month-card,
.intro-strip,
.intro-strip article {
  border-radius: 0 !important;
}

.calendar-panel,
.side-panel,
.price-card,
.faq-item,
.map-card,
.faq-contact-card {
  border: 1px solid rgba(7,18,23,.14) !important;
  background: rgba(247,248,247,.94) !important;
  box-shadow: 0 18px 46px rgba(7,18,23,.08) !important;
}

.calendar-panel { padding: clamp(16px, 2.6vw, 28px) !important; }
.month-card {
  border: 1px solid rgba(7,18,23,.13) !important;
  background: #fbfbf8 !important;
  box-shadow: none !important;
}
.calendar-controls strong,
.month-arrow,
.ghost-btn,
.primary-btn,
.day-cell,
.slot-btn,
input,
textarea,
select,
.legend span,
.data-mode-pill,
.selected-date-box,
.faq-item,
.price-card,
.map-card,
.faq-contact-card {
  border-radius: 0 !important;
}

.calendar-controls strong {
  background: #fbfbf8 !important;
  border: 1px solid rgba(7,18,23,.18) !important;
  color: var(--sq-ink) !important;
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
}
.month-arrow,
.ghost-btn {
  background: transparent !important;
  border: 1px solid rgba(7,18,23,.22) !important;
  color: var(--sq-ink) !important;
  box-shadow: none !important;
}
.month-arrow:hover:not(:disabled),
.ghost-btn:hover {
  background: rgba(7,18,23,.06) !important;
  border-color: rgba(7,18,23,.38) !important;
  transform: none !important;
}
.day-cell {
  min-height: 44px !important;
  background: #e7ecee !important;
  color: #68747b !important;
  border: 1px solid rgba(7,18,23,.08) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
}
.day-cell.available {
  background: rgba(18, 145, 94, .14) !important;
  color: #075438 !important;
  border-color: rgba(18,145,94,.38) !important;
}
.day-cell.booked {
  background: rgba(160, 44, 55, .13) !important;
  color: #8d1f2d !important;
  border-color: rgba(160,44,55,.32) !important;
}
.day-cell.blocked,
.day-cell.past {
  background: #edf0f1 !important;
  color: #8d969c !important;
}
.day-cell.today {
  background: var(--sq-ink) !important;
  color: #fff !important;
  border-color: var(--sq-ink) !important;
}
.day-cell.selected {
  outline: 1px solid var(--sq-ink) !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}
.slot-btn {
  background: #fbfbf8 !important;
  border: 1px solid rgba(7,18,23,.14) !important;
  box-shadow: none !important;
}
.slot-btn.available:hover,
.slot-btn.selected {
  border-color: var(--sq-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}
.slot-btn.pending {
  background: rgba(214,182,106,.16) !important;
  border-color: rgba(154,118,31,.38) !important;
}
.slot-price,
.price-card li strong { color: var(--sq-ink) !important; }
.primary-btn {
  background: var(--sq-ink) !important;
  color: var(--sq-cream) !important;
  border: 1px solid var(--sq-ink) !important;
  box-shadow: none !important;
}
.primary-btn:hover {
  transform: none !important;
  background: transparent !important;
  color: var(--sq-ink) !important;
  box-shadow: none !important;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--sq-ink) !important;
  box-shadow: 0 0 0 2px rgba(7,18,23,.10) !important;
}
.legend span {
  background: transparent !important;
  border-color: rgba(7,18,23,.16) !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  font-size: .68rem !important;
}

/* 3. Botonera inferior: barra cuadrada, uniforme, sin hovers circulares ni piezas mezcladas */
.app-tabbar {
  width: min(760px, calc(100vw - 26px)) !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
}
.app-tabbar-shell {
  height: clamp(66px, 8.5vw, 82px) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-template-rows: 1fr !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 20px !important;
  border: 1px solid rgba(7,18,23,.18) !important;
  background: rgba(247,248,247,.94) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.20) !important;
  backdrop-filter: blur(16px) saturate(1.06) !important;
  overflow: visible !important;
}
.app-tabbar a {
  border-radius: 0 !important;
  color: rgba(7,18,23,.72) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: .07em !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  gap: 5px !important;
  overflow: visible !important;
}
.app-tabbar a:nth-of-type(1) { border-radius: 20px 0 0 20px !important; }
.app-tabbar a:nth-of-type(5) { border-radius: 0 20px 20px 0 !important; }
.app-tabbar a:not(.app-center-reserve):not(:last-child)::after {
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  background: rgba(7,18,23,.13) !important;
}
.app-tabbar a::before {
  inset: 0 !important;
  border-radius: 0 !important;
  background: rgba(7,18,23,.075) !important;
  transform: none !important;
}
.app-tabbar a:hover:not(.app-center-reserve)::before,
.app-tabbar a.is-active:not(.app-center-reserve)::before {
  opacity: 1 !important;
}
.app-tabbar a:hover:not(.app-center-reserve),
.app-tabbar a.is-active:not(.app-center-reserve) {
  color: var(--sq-ink) !important;
  transform: none !important;
}
.app-tabbar .tab-icon {
  color: currentColor !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: clamp(.9rem, 1.8vw, 1.08rem) !important;
}
.app-tabbar a span:last-child {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: 100% !important;
}
.app-tabbar a.app-center-reserve {
  height: clamp(78px, 10vw, 96px) !important;
  transform: translateY(clamp(-22px, -2.6vw, -16px)) !important;
  border-radius: 18px !important;
  background: rgba(247,248,247,.98) !important;
  color: var(--sq-ink) !important;
  border: 1px solid rgba(7,18,23,.18) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
.app-tabbar a.app-center-reserve .tab-icon {
  background: var(--sq-ink) !important;
  color: #fff !important;
  border-radius: 6px !important;
  width: 30px !important;
  height: 30px !important;
  font-size: 1.42rem !important;
}
.app-tabbar a.app-center-reserve span:last-child {
  color: var(--sq-ink) !important;
  font-size: clamp(.54rem, 1.1vw, .68rem) !important;
}
.app-tabbar a.app-center-reserve:hover,
.app-tabbar a.app-center-reserve.is-active {
  transform: translateY(clamp(-24px, -2.8vw, -18px)) scale(1.01) !important;
}
body[data-active-view="reservas"] .app-tabbar-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(1) { border-radius: 20px 0 0 20px !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(5) { border-radius: 0 20px 20px 0 !important; }

/* 4. FAQ + Contacto dentro de una misma pantalla */
.faq-contact-card {
  width: min(820px, 100%);
  margin: clamp(22px, 4vw, 38px) auto 0;
  padding: clamp(22px, 4vw, 42px);
  text-align: center;
}
.faq-contact-card h2 {
  margin: 0 0 12px;
  color: var(--sq-ink);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 600;
  line-height: 1.08;
  font-size: clamp(1.45rem, 3.2vw, 2.6rem);
}
.faq-contact-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 20px;
  color: var(--sq-muted);
  line-height: 1.7;
}
body.app-single-focus[data-active-view="faq"] .faq-contact-card {
  animation: appViewFade .55s ease both;
}

@media (max-width: 760px) {
  .reserve-pill {
    left: 50% !important;
    top: calc(50% + 170px) !important;
    transform: translateX(-50%) scale(1) !important;
    width: calc(100vw - 48px) !important;
    min-width: 0 !important;
  }
  .reserve-pill:hover { transform: translateX(-50%) scale(1.035) !important; }
  .reserve-text { letter-spacing: .18em !important; }
  .app-tabbar { width: calc(100vw - 12px) !important; }
  .app-tabbar-shell {
    height: 64px !important;
    border-radius: 16px !important;
  }
  .app-tabbar a:nth-of-type(1) { border-radius: 16px 0 0 16px !important; }
  .app-tabbar a:nth-of-type(5) { border-radius: 0 16px 16px 0 !important; }
  .app-tabbar a {
    font-size: clamp(.42rem, 2.08vw, .56rem) !important;
    letter-spacing: .035em !important;
    padding: 0 2px !important;
  }
  .app-tabbar .tab-icon { font-size: clamp(.72rem, 3.2vw, .94rem) !important; }
  .app-tabbar a.app-center-reserve {
    height: 76px !important;
    border-radius: 14px !important;
    transform: translateY(-15px) !important;
  }
  .app-tabbar a.app-center-reserve .tab-icon {
    width: 26px !important;
    height: 26px !important;
    border-radius: 5px !important;
    font-size: 1.22rem !important;
  }
  .app-tabbar a.app-center-reserve span:last-child {
    font-size: clamp(.47rem, 2vw, .58rem) !important;
  }
  .day-cell { min-height: 39px !important; }
}

@media (max-width: 430px) {
  .app-tabbar-shell { height: 60px !important; border-radius: 14px !important; }
  .app-tabbar a:nth-of-type(1) { border-radius: 14px 0 0 14px !important; }
  .app-tabbar a:nth-of-type(5) { border-radius: 0 14px 14px 0 !important; }
  .app-tabbar a { font-size: clamp(.38rem, 2.15vw, .50rem) !important; gap: 3px !important; }
  .app-tabbar a.app-center-reserve { height: 72px !important; }
  .app-tabbar a.app-center-reserve span:last-child { font-size: .48rem !important; }
}

/* =========================================================
   v13 · Corrección final: botonera unificada y estado superior extendido
   ========================================================= */

/* Barra superior: una sola línea, más extendida, liviana y legible en mobile */
.top-status-bar {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(860px, calc(100vw - 14px)) !important;
  max-width: calc(100vw - 14px) !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(8px, 2.2vw, 22px) !important;
  padding: 0 8px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 65 !important;
  pointer-events: auto !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
.top-status-bar .weather-clock,
.top-status-bar .floating-whatsapp {
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(4px, 1vw, 8px) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(247,247,242,.86) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.55) !important;
  font-family: var(--font-main, system-ui, sans-serif) !important;
  font-size: clamp(.54rem, 1.28vw, .72rem) !important;
  font-weight: 700 !important;
  letter-spacing: .10em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  white-space: nowrap !important;
}
.top-status-bar .weather-clock {
  flex: 0 1 auto !important;
}
.top-status-bar .floating-whatsapp {
  flex: 0 0 auto !important;
  text-decoration: none !important;
}
.top-status-bar .weather-emoji {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  font-size: clamp(.72rem, 1.65vw, .98rem) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
}
.top-status-bar .weather-clock strong,
.top-status-bar .weather-clock span,
.top-status-bar .weather-clock small,
.top-status-bar .floating-whatsapp span,
.top-status-bar .floating-whatsapp strong,
.top-status-bar #localDate,
.top-status-bar #localTime,
.top-status-bar #weatherCity,
.top-status-bar #weatherTemp {
  display: inline !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
}
.top-status-bar .floating-whatsapp strong {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: 1.05em !important;
}
.top-status-bar .status-separator {
  opacity: .62 !important;
  padding: 0 1px !important;
}
body[data-active-view="reservas"] .top-status-bar {
  top: 4px !important;
  width: min(920px, calc(100vw - 12px)) !important;
  background: transparent !important;
}
body[data-active-view="reservas"] .top-status-bar .weather-clock,
body[data-active-view="reservas"] .top-status-bar .floating-whatsapp {
  color: rgba(7,18,23,.74) !important;
  text-shadow: none !important;
}

/* Botonera inferior: una pieza única, sin separadores visibles ni hovers circulares */
.app-tabbar {
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(660px, calc(100vw - 20px)) !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  padding: 0 !important;
  z-index: 70 !important;
}
.app-tabbar-shell {
  position: relative !important;
  height: clamp(64px, 7.8vw, 78px) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 18px !important;
  border: 0 !important;
  background: rgba(247, 247, 242, .96) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(18px) saturate(1.05) !important;
}
.app-tabbar-shell::before,
.app-tabbar-shell::after,
.app-tabbar a::after,
.app-tabbar a + a::before,
.app-tabbar a:not(.app-center-reserve):not(:last-child)::after,
.app-tabbar a:not(:last-child)::after,
.app-tabbar a:not(:last-of-type)::after,
.app-tabbar a:not(:last-of-type) {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
.app-tabbar a {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 4px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(7,18,23,.68) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .065em !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  transform: none !important;
  transition: color .24s ease, background .24s ease, transform .24s ease !important;
  overflow: visible !important;
}
.app-tabbar a:nth-of-type(1) { grid-column: 1 !important; border-radius: 18px 0 0 18px !important; }
.app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
.app-tabbar a:nth-of-type(3) { grid-column: 3 !important; }
.app-tabbar a:nth-of-type(4) { grid-column: 4 !important; }
.app-tabbar a:nth-of-type(5) { grid-column: 5 !important; border-radius: 0 18px 18px 0 !important; }
.app-tabbar a::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px 7px !important;
  display: block !important;
  border-radius: 10px !important;
  background: transparent !important;
  opacity: 1 !important;
  transform: none !important;
  transition: background .24s ease, inset .24s ease !important;
  z-index: -1 !important;
}
.app-tabbar a:hover:not(.app-center-reserve)::before,
.app-tabbar a.is-active:not(.app-center-reserve)::before {
  background: rgba(7,18,23,.08) !important;
}
.app-tabbar a:hover:not(.app-center-reserve),
.app-tabbar a.is-active:not(.app-center-reserve) {
  color: #071217 !important;
  background: transparent !important;
  transform: none !important;
}
.app-tabbar .tab-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: currentColor !important;
  font-size: clamp(.82rem, 1.55vw, 1rem) !important;
  line-height: 1 !important;
}
.app-tabbar a span:last-child {
  display: block !important;
  max-width: 100% !important;
  color: currentColor !important;
  font-size: clamp(.48rem, 1.05vw, .63rem) !important;
  letter-spacing: .065em !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}
.app-tabbar a.app-center-reserve {
  z-index: 3 !important;
  align-self: center !important;
  height: clamp(78px, 9.4vw, 92px) !important;
  margin: 0 !important;
  transform: translateY(clamp(-18px, -2.4vw, -14px)) !important;
  border-radius: 14px !important;
  background: rgba(247,247,242,.99) !important;
  color: #071217 !important;
  border: 0 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.20) !important;
  overflow: hidden !important;
}
.app-tabbar a.app-center-reserve::before {
  inset: 0 !important;
  border-radius: 14px !important;
  background: rgba(247,247,242,.99) !important;
  border: 0 !important;
}
.app-tabbar a.app-center-reserve .tab-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 7px !important;
  background: #071217 !important;
  color: #f7f7f2 !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
}
.app-tabbar a.app-center-reserve span:last-child {
  font-size: clamp(.50rem, 1vw, .62rem) !important;
  letter-spacing: .035em !important;
  text-transform: none !important;
}
.app-tabbar a.app-center-reserve:hover,
.app-tabbar a.app-center-reserve.is-active {
  transform: translateY(clamp(-20px, -2.6vw, -16px)) !important;
  background: rgba(247,247,242,1) !important;
}
.app-tabbar a.app-center-reserve.is-active::before,
.app-tabbar a.app-center-reserve:hover::before {
  background: rgba(247,247,242,1) !important;
}

@media (max-width: 760px) {
  .top-status-bar {
    width: calc(100vw - 10px) !important;
    height: 30px !important;
    gap: 7px !important;
    padding: 0 4px !important;
  }
  .top-status-bar .weather-clock,
  .top-status-bar .floating-whatsapp {
    gap: 4px !important;
    font-size: clamp(.47rem, 1.95vw, .60rem) !important;
    letter-spacing: .055em !important;
  }
  .top-status-bar .weather-emoji { font-size: .72rem !important; }
  .app-tabbar {
    width: calc(100vw - 18px) !important;
  }
  .app-tabbar-shell {
    height: 62px !important;
    border-radius: 15px !important;
  }
  .app-tabbar a:nth-of-type(1) { border-radius: 15px 0 0 15px !important; }
  .app-tabbar a:nth-of-type(5) { border-radius: 0 15px 15px 0 !important; }
  .app-tabbar a {
    gap: 4px !important;
    padding: 0 2px !important;
  }
  .app-tabbar .tab-icon { font-size: clamp(.72rem, 3vw, .9rem) !important; }
  .app-tabbar a span:last-child {
    font-size: clamp(.42rem, 2vw, .52rem) !important;
    letter-spacing: .035em !important;
  }
  .app-tabbar a.app-center-reserve {
    height: 74px !important;
    border-radius: 13px !important;
    transform: translateY(-14px) !important;
  }
  .app-tabbar a.app-center-reserve .tab-icon {
    width: 25px !important;
    height: 25px !important;
    border-radius: 6px !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 430px) {
  .top-status-bar {
    justify-content: center !important;
    gap: 5px !important;
  }
  .top-status-bar .weather-clock,
  .top-status-bar .floating-whatsapp {
    font-size: clamp(.42rem, 1.72vw, .50rem) !important;
    letter-spacing: .025em !important;
  }
  .top-status-bar .weather-emoji { font-size: .64rem !important; }
  .top-status-bar #localDate,
  .top-status-bar #localTime,
  .top-status-bar #weatherCity,
  .top-status-bar #weatherTemp,
  .top-status-bar .floating-whatsapp span {
    display: inline !important;
  }
  .top-status-bar .status-separator { padding: 0 !important; }
  .app-tabbar {
    width: calc(100vw - 10px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
  }
  .app-tabbar-shell {
    height: 58px !important;
    border-radius: 13px !important;
  }
  .app-tabbar a:nth-of-type(1) { border-radius: 13px 0 0 13px !important; }
  .app-tabbar a:nth-of-type(5) { border-radius: 0 13px 13px 0 !important; }
  .app-tabbar a {
    gap: 3px !important;
  }
  .app-tabbar .tab-icon { font-size: .72rem !important; }
  .app-tabbar a span:last-child {
    font-size: .43rem !important;
    letter-spacing: .018em !important;
  }
  .app-tabbar a.app-center-reserve {
    height: 70px !important;
    transform: translateY(-12px) !important;
  }
  .app-tabbar a.app-center-reserve span:last-child {
    font-size: .45rem !important;
  }
}


/* ===== v14 final override: botonera transparente + botones sólidos visibles ===== */
:root {
  --app-bar-width: min(760px, calc(100vw - 24px));
  --app-border: rgba(255,255,255,.86);
  --app-border-soft: rgba(255,255,255,.42);
  --app-text: rgba(255,255,255,.96);
  --app-text-dark: #061525;
  --app-fill-soft: rgba(255,255,255,.07);
  --app-fill-active: rgba(255,255,255,.96);
}

.top-status-bar {
  position: fixed !important;
  top: max(8px, env(safe-area-inset-top, 0px)) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: var(--app-bar-width) !important;
  max-width: calc(100vw - 20px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  z-index: 1800 !important;
}

.top-status-bar .weather-clock {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: rgba(255,255,255,.76) !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
  font-size: .72rem !important;
  white-space: nowrap !important;
}

.top-status-bar .weather-emoji {
  width: auto !important;
  height: auto !important;
  font-size: .92rem !important;
  background: transparent !important;
  box-shadow: none !important;
}

.top-status-bar .weather-clock strong,
.top-status-bar .weather-clock span,
.top-status-bar .weather-clock small {
  color: rgba(255,255,255,.72) !important;
  font-weight: 700 !important;
}

.top-status-bar .status-separator {
  opacity: .35 !important;
}

.top-status-bar .floating-whatsapp {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,.88) !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: .14em !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  min-width: 0 !important;
}

.top-status-bar .floating-whatsapp strong,
.top-status-bar .floating-whatsapp span {
  color: inherit !important;
  font-size: inherit !important;
}

.app-tabbar {
  position: fixed !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  width: var(--app-bar-width) !important;
  max-width: calc(100vw - 24px) !important;
  z-index: 1750 !important;
  pointer-events: none !important;
}

.app-tabbar-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  align-items: end !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 0 0 4px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

.app-tabbar-shell::before,
.app-tabbar-shell::after,
.app-tabbar a::before,
.app-tabbar a::after {
  content: none !important;
  display: none !important;
}

.app-tabbar a {
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 68px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 8px 6px !important;
  margin: 0 !important;
  background: rgba(255,255,255,.05) !important;
  border: 1.5px solid var(--app-border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
  color: var(--app-text) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .11em !important;
  font-size: clamp(.56rem, 1.35vw, .72rem) !important;
  font-weight: 900 !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease !important;
}

.app-tabbar a:nth-of-type(1) {
  grid-column: 1 !important;
  border-radius: 18px 0 0 18px !important;
  border-right-color: transparent !important;
}
.app-tabbar a:nth-of-type(2) {
  grid-column: 2 !important;
  border-right-color: transparent !important;
}
.app-tabbar a:nth-of-type(3) {
  grid-column: 3 !important;
}
.app-tabbar a:nth-of-type(4) {
  grid-column: 4 !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}
.app-tabbar a:nth-of-type(5) {
  grid-column: 5 !important;
  border-radius: 0 18px 18px 0 !important;
  border-left-color: transparent !important;
}

.app-tabbar .tab-icon {
  width: auto !important;
  height: auto !important;
  display: block !important;
  background: transparent !important;
  color: currentColor !important;
  font-size: .95rem !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.app-tabbar a:hover:not(.app-center-reserve),
.app-tabbar a.is-active:not(.app-center-reserve) {
  background: rgba(255,255,255,.96) !important;
  color: var(--app-text-dark) !important;
  border-color: rgba(255,255,255,.96) !important;
  z-index: 2 !important;
}

.app-tabbar a.app-center-reserve {
  height: 80px !important;
  margin-inline: 10px !important;
  transform: translateY(-14px) !important;
  border-radius: 20px !important;
  border-color: rgba(255,255,255,.96) !important;
  background: rgba(255,255,255,.96) !important;
  color: var(--app-text-dark) !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.24) !important;
  z-index: 4 !important;
  overflow: hidden !important;
}

.app-tabbar a.app-center-reserve .tab-icon {
  width: 28px !important;
  height: 28px !important;
  display: grid !important;
  place-items: center !important;
  background: #061525 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
}

.app-tabbar a.app-center-reserve span:last-child {
  color: var(--app-text-dark) !important;
}

.app-tabbar a.app-center-reserve:hover,
.app-tabbar a.app-center-reserve.is-active {
  transform: translateY(-18px) !important;
  background: #ffffff !important;
  color: var(--app-text-dark) !important;
  box-shadow: 0 22px 42px rgba(0,0,0,.28) !important;
}

/* Ocultar el botón central al estar dentro del calendario y reacomodar el resto */
body[data-active-view="reservas"] .app-tabbar a.app-center-reserve {
  display: none !important;
}
body[data-active-view="reservas"] .app-tabbar-shell {
  grid-template-columns: repeat(4, 1fr) !important;
}
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(1) { grid-column: 1 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(2) { grid-column: 2 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(4) { grid-column: 3 !important; }
body[data-active-view="reservas"] .app-tabbar a:nth-of-type(5) { grid-column: 4 !important; }

@media (max-width: 760px) {
  .top-status-bar {
    width: calc(100vw - 20px) !important;
    gap: 12px !important;
  }
  .top-status-bar .weather-clock {
    gap: 6px !important;
    font-size: .62rem !important;
    letter-spacing: .09em !important;
  }
  .top-status-bar .floating-whatsapp {
    font-size: .62rem !important;
    letter-spacing: .1em !important;
  }
  .app-tabbar {
    width: calc(100vw - 20px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
  }
  .app-tabbar a {
    height: 62px !important;
    font-size: clamp(.5rem, 2.25vw, .64rem) !important;
    letter-spacing: .08em !important;
  }
  .app-tabbar a.app-center-reserve {
    height: 72px !important;
    transform: translateY(-12px) !important;
    margin-inline: 6px !important;
  }
  .app-tabbar a.app-center-reserve:hover,
  .app-tabbar a.app-center-reserve.is-active {
    transform: translateY(-15px) !important;
  }
}

@media (max-width: 430px) {
  .top-status-bar {
    width: calc(100vw - 14px) !important;
    gap: 8px !important;
  }
  .top-status-bar .weather-clock {
    gap: 5px !important;
    font-size: .53rem !important;
  }
  .top-status-bar .floating-whatsapp {
    font-size: .53rem !important;
  }
  .app-tabbar {
    width: calc(100vw - 12px) !important;
  }
  .app-tabbar a {
    height: 58px !important;
    padding: 6px 4px !important;
    font-size: .48rem !important;
  }
  .app-tabbar .tab-icon {
    font-size: .82rem !important;
  }
  .app-tabbar a.app-center-reserve {
    height: 68px !important;
    margin-inline: 4px !important;
  }
  .app-tabbar a.app-center-reserve span:last-child {
    font-size: .48rem !important;
  }
}


/* ===== v15 DEFINITIVO: restaurar TODOS los botones y botonera transparente =====
   Este bloque tiene más especificidad que los overrides anteriores para evitar que
   reglas viejas como a:not(:last-of-type) vuelvan a ocultar botones. */

body.app-single-focus .app-tabbar,
html body .app-tabbar {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(720px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  z-index: 3000 !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.app-single-focus .app-tabbar .app-tabbar-shell,
html body .app-tabbar .app-tabbar-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: end !important;
  justify-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: 76px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

body.app-single-focus .app-tabbar .app-tabbar-shell::before,
body.app-single-focus .app-tabbar .app-tabbar-shell::after,
body.app-single-focus .app-tabbar .app-tabbar-shell > a::before,
body.app-single-focus .app-tabbar .app-tabbar-shell > a::after,
html body .app-tabbar .app-tabbar-shell::before,
html body .app-tabbar .app-tabbar-shell::after,
html body .app-tabbar .app-tabbar-shell > a::before,
html body .app-tabbar .app-tabbar-shell > a::after {
  content: none !important;
  display: none !important;
}

/* RESTAURA explícitamente los 5 botones: Inicio, Tarifas, Reservar, Ubicación, FAQ y contacto */
body.app-single-focus .app-tabbar .app-tabbar-shell > a,
body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-child),
body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(.app-center-reserve),
html body .app-tabbar .app-tabbar-shell > a,
html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
html body .app-tabbar .app-tabbar-shell > a:not(.app-center-reserve) {
  visibility: visible !important;
  opacity: 1 !important;
  display: flex !important;
  position: relative !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 76px !important;
  min-height: 76px !important;
  max-height: none !important;
  grid-row: 1 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 8px 4px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  color: rgba(255,255,255,.88) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
  font-size: clamp(.54rem, 1.28vw, .7rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  white-space: normal !important;
  text-align: center !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(1),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(2),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(3),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(3) { grid-column: 3 !important; }
body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(4),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 4 !important; }
body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(5),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 5 !important; }

body.app-single-focus .app-tabbar .tab-icon,
html body .app-tabbar .tab-icon {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: currentColor !important;
  font-size: .88rem !important;
  line-height: 1 !important;
}

/* Estado activo: sin pastillas redondas, sin círculos, sin divisiones */
body.app-single-focus .app-tabbar .app-tabbar-shell > a:hover:not(.app-center-reserve),
body.app-single-focus .app-tabbar .app-tabbar-shell > a.is-active:not(.app-center-reserve),
html body .app-tabbar .app-tabbar-shell > a:hover:not(.app-center-reserve),
html body .app-tabbar .app-tabbar-shell > a.is-active:not(.app-center-reserve) {
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,.88) !important;
  transform: none !important;
}

/* Botón central Reservar: destacado, pero unido visualmente al panel */
body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  grid-column: 3 !important;
  height: 88px !important;
  min-height: 88px !important;
  transform: translateY(-12px) !important;
  background: rgba(255,255,255,.96) !important;
  color: #061525 !important;
  border: 1px solid rgba(255,255,255,.98) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
  z-index: 5 !important;
}

body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
  display: grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  background: #061525 !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
}

body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve span:last-child,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve span:last-child {
  color: #061525 !important;
  font-weight: 900 !important;
}

/* En calendario: ocultar solo Reservar y redistribuir los 4 restantes */
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a.app-center-reserve {
  display: none !important;
}
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 3 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 4 !important; }

@media (max-width: 430px) {
  body.app-single-focus .app-tabbar,
  html body .app-tabbar {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
  }

  body.app-single-focus .app-tabbar .app-tabbar-shell,
  html body .app-tabbar .app-tabbar-shell {
    min-height: 68px !important;
  }

  body.app-single-focus .app-tabbar .app-tabbar-shell > a,
  body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
  html body .app-tabbar .app-tabbar-shell > a,
  html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type) {
    height: 68px !important;
    min-height: 68px !important;
    padding: 7px 2px !important;
    font-size: .46rem !important;
    letter-spacing: .055em !important;
    gap: 4px !important;
  }

  body.app-single-focus .app-tabbar .tab-icon,
  html body .app-tabbar .tab-icon {
    font-size: .76rem !important;
  }

  body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve,
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
    height: 78px !important;
    min-height: 78px !important;
    transform: translateY(-10px) !important;
  }

  body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon,
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
    width: 25px !important;
    height: 25px !important;
    font-size: .9rem !important;
  }
}

@media (max-width: 360px) {
  body.app-single-focus .app-tabbar .app-tabbar-shell > a,
  body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
  html body .app-tabbar .app-tabbar-shell > a,
  html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type) {
    font-size: .42rem !important;
    letter-spacing: .035em !important;
  }
}

/* ===== v16: botonera outline premium + cambio automático claro/oscuro + nueva imagen hero ===== */
:root {
  --tabbar-ink: rgba(255,255,255,.94);
  --tabbar-ink-muted: rgba(255,255,255,.72);
  --tabbar-line: rgba(255,255,255,.72);
  --tabbar-fill-hover: rgba(255,255,255,.08);
  --tabbar-shadow: rgba(0,0,0,.20);
}

body[data-active-view="tarifas"],
body[data-active-view="faq"],
body[data-active-view="ubicacion"] {
  --tabbar-ink: rgba(6,21,37,.92);
  --tabbar-ink-muted: rgba(6,21,37,.68);
  --tabbar-line: rgba(6,21,37,.50);
  --tabbar-fill-hover: rgba(6,21,37,.06);
  --tabbar-shadow: rgba(255,255,255,.16);
}

.hero-bg {
  background-image: url('../img/lancha_aesthetic_hd.png') !important;
  background-position: center center !important;
  background-size: cover !important;
  transform: scale(1.045) translate3d(0,0,0) !important;
  animation: lanchaAestheticDrift 24s ease-in-out infinite alternate !important;
  will-change: transform, background-position !important;
}

.hero-bg::after {
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(180deg, rgba(2,16,29,.22) 0%, rgba(2,16,29,.08) 35%, rgba(2,16,29,.60) 100%) !important;
}

@keyframes lanchaAestheticDrift {
  0% {
    transform: scale(1.045) translate3d(0, 0, 0) !important;
    background-position: center 50% !important;
  }
  50% {
    transform: scale(1.075) translate3d(0, -1.8%, 0) !important;
    background-position: center 47% !important;
  }
  100% {
    transform: scale(1.055) translate3d(0, 1.2%, 0) !important;
    background-position: center 53% !important;
  }
}

html body.app-single-focus .app-tabbar,
html body .app-tabbar {
  width: min(720px, calc(100vw - 22px)) !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  pointer-events: none !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell,
html body .app-tabbar .app-tabbar-shell {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: end !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: 76px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: 1.25px solid var(--tabbar-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell::before,
html body.app-single-focus .app-tabbar .app-tabbar-shell::after,
html body .app-tabbar .app-tabbar-shell::before,
html body .app-tabbar .app-tabbar-shell::after,
html body.app-single-focus .app-tabbar .app-tabbar-shell > a::before,
html body.app-single-focus .app-tabbar .app-tabbar-shell > a::after,
html body .app-tabbar .app-tabbar-shell > a::before,
html body .app-tabbar .app-tabbar-shell > a::after {
  display: none !important;
  content: none !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a,
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-child),
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
html body .app-tabbar .app-tabbar-shell > a,
html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type) {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 76px !important;
  min-height: 76px !important;
  padding: 8px 4px !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  background: transparent !important;
  border: 0 !important;
  border-right: 1px solid color-mix(in srgb, var(--tabbar-line), transparent 52%) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  color: var(--tabbar-ink) !important;
  text-decoration: none !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: .10em !important;
  font-size: clamp(.52rem, 1.24vw, .7rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  white-space: normal !important;
  overflow: visible !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(1),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(2),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(3),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(3) { grid-column: 3 !important; }
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(4),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 4 !important; }
html body.app-single-focus .app-tabbar .app-tabbar-shell > a:nth-of-type(5),
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 5 !important; border-right: 0 !important; }

html body.app-single-focus .app-tabbar .tab-icon,
html body .app-tabbar .tab-icon {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: currentColor !important;
  font-size: .88rem !important;
  line-height: 1 !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a:hover:not(.app-center-reserve),
html body.app-single-focus .app-tabbar .app-tabbar-shell > a.is-active:not(.app-center-reserve),
html body .app-tabbar .app-tabbar-shell > a:hover:not(.app-center-reserve),
html body .app-tabbar .app-tabbar-shell > a.is-active:not(.app-center-reserve) {
  background: var(--tabbar-fill-hover) !important;
  color: var(--tabbar-ink) !important;
  box-shadow: inset 0 -2px 0 var(--tabbar-ink) !important;
  transform: none !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
  grid-column: 3 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 88px !important;
  min-height: 88px !important;
  margin: 0 8px !important;
  transform: translateY(-12px) !important;
  background: transparent !important;
  border: 1.35px solid var(--tabbar-line) !important;
  border-radius: 0 !important;
  color: var(--tabbar-ink) !important;
  box-shadow: 0 16px 32px var(--tabbar-shadow) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 5 !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
  display: grid !important;
  place-items: center !important;
  width: 28px !important;
  height: 28px !important;
  background: transparent !important;
  border: 1.2px solid var(--tabbar-line) !important;
  border-radius: 0 !important;
  color: var(--tabbar-ink) !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve span:last-child,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve span:last-child {
  color: var(--tabbar-ink) !important;
  font-weight: 900 !important;
}

html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve:hover,
html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve.is-active,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve:hover,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve.is-active {
  transform: translateY(-15px) !important;
  background: var(--tabbar-fill-hover) !important;
  color: var(--tabbar-ink) !important;
  box-shadow: 0 18px 36px var(--tabbar-shadow), inset 0 -2px 0 var(--tabbar-ink) !important;
}

body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a.app-center-reserve {
  display: none !important;
}
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 3 !important; }
body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 4 !important; border-right: 0 !important; }

@media (max-width: 430px) {
  html body.app-single-focus .app-tabbar,
  html body .app-tabbar {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
  }

  html body.app-single-focus .app-tabbar .app-tabbar-shell,
  html body .app-tabbar .app-tabbar-shell {
    min-height: 68px !important;
  }

  html body.app-single-focus .app-tabbar .app-tabbar-shell > a,
  html body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-child),
  html body.app-single-focus .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
  html body .app-tabbar .app-tabbar-shell > a,
  html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
  html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type) {
    height: 68px !important;
    min-height: 68px !important;
    padding: 7px 2px !important;
    font-size: .44rem !important;
    letter-spacing: .045em !important;
    gap: 4px !important;
  }

  html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve,
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
    height: 78px !important;
    min-height: 78px !important;
    margin: 0 5px !important;
    transform: translateY(-10px) !important;
  }

  html body.app-single-focus .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon,
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
    width: 25px !important;
    height: 25px !important;
  }
}


/* =====================================================================
   v17 FIX FINAL
   1) Fondo lancha con movimiento REAL: animamos ::before, no .hero-bg,
      para que ninguna regla vieja con transform: ... !important lo bloquee.
   2) Botonera: UN SOLO RECTÁNGULO, transparente, todos los botones alineados.
      En calendario se oculta únicamente Reservar + y los demás se redistribuyen.
   ===================================================================== */

/* Contraste automático por pantalla: blanco sobre inicio/fondo oscuro, negro en pantallas claras */
html body {
  --nav-ink: rgba(255,255,255,.94);
  --nav-ink-soft: rgba(255,255,255,.72);
  --nav-line: rgba(255,255,255,.82);
  --nav-hover: rgba(255,255,255,.10);
}

html body[data-active-view="reservas"],
html body[data-active-view="tarifas"],
html body[data-active-view="ubicacion"],
html body[data-active-view="faq"] {
  --nav-ink: rgba(6,21,37,.94);
  --nav-ink-soft: rgba(6,21,37,.72);
  --nav-line: rgba(6,21,37,.64);
  --nav-hover: rgba(6,21,37,.07);
}

/* Fondo: reseteamos el div y movemos la imagen en un pseudo-elemento */
html body .hero {
  overflow: hidden !important;
  isolation: isolate !important;
}

html body .hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: -3 !important;
  overflow: hidden !important;
  background: none !important;
  background-image: none !important;
  transform: none !important;
  animation: none !important;
  will-change: auto !important;
}

html body .hero-bg::before {
  content: "" !important;
  position: absolute !important;
  inset: -10% !important;
  z-index: -2 !important;
  display: block !important;
  background-image: url("../img/lancha_aesthetic_hd.png") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  transform: translate3d(0,0,0) scale(1.04) !important;
  transform-origin: center center !important;
  animation: lanchaMovimientoRealV17 18s ease-in-out infinite alternate !important;
  will-change: transform !important;
}

html body .hero-bg::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  display: block !important;
  background:
    linear-gradient(180deg, rgba(2,16,29,.18) 0%, rgba(2,16,29,.08) 34%, rgba(2,16,29,.72) 100%),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), transparent 28%) !important;
}

@keyframes lanchaMovimientoRealV17 {
  0% {
    transform: translate3d(-1.8%, -1.4%, 0) scale(1.045);
  }
  35% {
    transform: translate3d(1.4%, -3.2%, 0) scale(1.085);
  }
  70% {
    transform: translate3d(-1.0%, 1.7%, 0) scale(1.065);
  }
  100% {
    transform: translate3d(1.8%, 2.8%, 0) scale(1.095);
  }
}

/* Botonera: un solo cuadrado/rectángulo, sin cápsulas ni fondos sólidos */
html body .app-tabbar {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  transform: translateX(-50%) !important;
  width: min(720px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  height: auto !important;
  z-index: 4000 !important;
  pointer-events: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body .app-tabbar .app-tabbar-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  grid-auto-rows: 62px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: 62px !important;
  height: 62px !important;
  padding: 0 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  pointer-events: auto !important;
  background: transparent !important;
  border: 1.35px solid var(--nav-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Anula pseudoformas y divisiones viejas */
html body .app-tabbar .app-tabbar-shell::before,
html body .app-tabbar .app-tabbar-shell::after,
html body .app-tabbar .app-tabbar-shell > a::before,
html body .app-tabbar .app-tabbar-shell > a::after {
  content: none !important;
  display: none !important;
}

/* Fuerza visibilidad de TODOS los botones */
html body .app-tabbar .app-tabbar-shell > a,
html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
html body .app-tabbar .app-tabbar-shell > a:not(.app-center-reserve) {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  width: 100% !important;
  height: 62px !important;
  min-height: 62px !important;
  max-height: 62px !important;
  padding: 6px 3px !important;
  margin: 0 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  overflow: hidden !important;
  pointer-events: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  color: var(--nav-ink) !important;
  text-decoration: none !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: .105em !important;
  font-size: clamp(.50rem, 1.15vw, .68rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  white-space: normal !important;
  backdrop-filter: none !important;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease !important;
}

html body .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(3) { grid-column: 3 !important; }
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 4 !important; }
html body .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 5 !important; }

html body .app-tabbar .tab-icon {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: currentColor !important;
  font-size: .84rem !important;
  line-height: 1 !important;
}

/* Hover/activo: sin fondo blanco sólido, solo señal mínima dentro del cuadrado */
html body .app-tabbar .app-tabbar-shell > a:hover,
html body .app-tabbar .app-tabbar-shell > a.is-active {
  background: var(--nav-hover) !important;
  color: var(--nav-ink) !important;
  box-shadow: inset 0 -2px 0 var(--nav-line) !important;
  transform: none !important;
}

/* Reservar +: mismo sistema, solo un marco interior, NO fondo blanco sólido */
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve.is-active,
html body .app-tabbar .app-tabbar-shell > a.app-center-reserve:hover {
  grid-column: 3 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 62px !important;
  min-height: 62px !important;
  max-height: 62px !important;
  margin: 0 !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--nav-ink) !important;
  box-shadow: inset 0 0 0 1.35px var(--nav-line) !important;
  z-index: 2 !important;
}

html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
  display: grid !important;
  place-items: center !important;
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  border: 1.15px solid var(--nav-line) !important;
  border-radius: 0 !important;
  color: var(--nav-ink) !important;
  font-size: .92rem !important;
  line-height: 1 !important;
}

html body .app-tabbar .app-tabbar-shell > a.app-center-reserve span:last-child {
  color: var(--nav-ink) !important;
  font-weight: 900 !important;
}

/* En el calendario: desaparece solo Reservar + y quedan 4 botones perfectamente alineados */
html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a.app-center-reserve {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(1) { grid-column: 1 !important; }
html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(2) { grid-column: 2 !important; }
html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(4) { grid-column: 3 !important; }
html body[data-active-view="reservas"] .app-tabbar .app-tabbar-shell > a:nth-of-type(5) { grid-column: 4 !important; }

/* Responsive: mantiene un solo rectángulo dentro del ancho del dispositivo */
@media (max-width: 520px) {
  html body .app-tabbar {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
  }

  html body .app-tabbar .app-tabbar-shell {
    height: 58px !important;
    min-height: 58px !important;
    grid-auto-rows: 58px !important;
  }

  html body .app-tabbar .app-tabbar-shell > a,
  html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
  html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
  html body .app-tabbar .app-tabbar-shell > a:not(.app-center-reserve),
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 5px 2px !important;
    gap: 3px !important;
    font-size: clamp(.42rem, 2.2vw, .52rem) !important;
    letter-spacing: .055em !important;
  }

  html body .app-tabbar .tab-icon {
    font-size: .72rem !important;
  }

  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve .tab-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: .82rem !important;
  }
}

@media (max-width: 360px) {
  html body .app-tabbar .app-tabbar-shell > a,
  html body .app-tabbar .app-tabbar-shell > a:not(:last-child),
  html body .app-tabbar .app-tabbar-shell > a:not(:last-of-type),
  html body .app-tabbar .app-tabbar-shell > a:not(.app-center-reserve),
  html body .app-tabbar .app-tabbar-shell > a.app-center-reserve {
    font-size: .39rem !important;
    letter-spacing: .028em !important;
  }
}


/* Loader + idioma */
.page-loader {
  background: radial-gradient(circle at center, rgba(11,33,52,.95) 0%, rgba(2,16,29,.98) 55%, rgba(2,16,29,1) 100%);
}
.page-loader.is-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo-wrap { display:grid; place-items:center; }
.loader-logo {
  width: min(320px, 54vw);
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.34));
  opacity: 0;
  transform: scale(.86);
  animation: loaderFadeIn .9s ease forwards, loaderPulse 2.4s ease-in-out infinite .9s;
}
@keyframes loaderFadeIn { to { opacity: 1; transform: scale(1);} }
@keyframes loaderPulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.08);} }

.lang-floating-btn {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10020;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(2,16,29,.58);
  color: #fff;
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.lang-floating-btn:hover { transform: translateY(-1px); }
.lang-floating-btn.hidden { opacity:0; visibility:hidden; }
.lang-code { font-size:.85rem; font-weight:800; letter-spacing:.08em; }
.lang-modal {
  position: fixed; inset: 0; z-index: 10030;
  display:none; align-items:center; justify-content:center; padding:20px;
}
.lang-modal.open { display:flex; }
.lang-modal-backdrop { position:absolute; inset:0; background: rgba(2,16,29,.72); backdrop-filter: blur(8px); }
.lang-modal-card {
  position:relative; z-index:1; width:min(760px, 100%);
  border-radius: 28px; padding: 28px; background:#fff; color:var(--navy-950);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.lang-modal-eyebrow { margin:0 0 8px; color:#0d6e91; text-transform:uppercase; letter-spacing:.18em; font-size:.75rem; font-weight:800; }
.lang-modal-card h2 { margin:0 0 8px; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height:1.02; }
.lang-modal-card p { margin:0 0 20px; color:#576677; }
.lang-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap:14px; }
.lang-option { border:1px solid #dbe4eb; background:#f8fbfd; border-radius:20px; padding:18px 14px; display:grid; gap:8px; place-items:center; transition:.25s ease; }
.lang-option span { font-size:1.8rem; }
.lang-option strong { font-size:.98rem; color:var(--navy-900); }
.lang-option:hover, .lang-option.active { border-color:#55c7cf; background:#eef9fa; transform: translateY(-2px); }
@media (max-width: 640px) { .lang-floating-btn { top: 12px; right: 12px; padding:8px 12px; } .lang-modal-card { padding:22px; } }

/* Global fix: evita auto-zoom en iOS/Android al completar formularios. */
input, textarea, select { font-size: 16px !important; line-height: 1.35 !important; }
button, a, input, textarea, select { touch-action: manipulation; }
