/* ============================================================
   LESS IS MORE · MOTOR YACHT — hoja de estilos
   ------------------------------------------------------------
   Diseño MOBILE-FIRST: los estilos base son para móvil
   (360–390 px) y los @media amplían hacia tablet/escritorio.

   Paleta de marca (extraída del logo):
     Azul marino .... #0B2038  (header, secciones oscuras)
     Dorado/arena ... #C2A15C  (acentos, botones)
     Crema .......... #F0ECE1  (texto sobre oscuro)
     Tono apagado ... #B7AE9C  (subtítulos)
   ============================================================ */

:root {
  --navy:  #0B2038;
  --navy-2:#0E2A49;      /* azul un punto más claro para tarjetas oscuras */
  --gold:  #C2A15C;
  --gold-2:#d4b878;      /* dorado claro para hover */
  --cream: #F0ECE1;
  --muted: #B7AE9C;
  --ink:   #22303f;      /* texto sobre fondo claro */
  --bg:    #f7f5f0;      /* fondo claro general */
  --white: #ffffff;
  --ok:    #2e7d32;
  --error: #c62828;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 32, 56, .12);
  --header-h: 64px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* Los anclajes no quedan tapados por el header fijo */
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }

/* ---------- Titulares (Jost, como el logo) ---------- */
h1, h2, h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
}

h2 { font-size: clamp(1.5rem, 5.5vw, 2.4rem); margin-bottom: .75rem; }
h3 { font-size: 1.1rem; }

.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ============================================================
   CABECERA — fondo #0B2038, el logo se funde con la barra
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding-inline: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.brand img { height: 40px; width: auto; }

/* --- Botón hamburguesa (visible solo en móvil) --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: .8rem;        /* área táctil generosa */
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
/* Animación a "X" cuando el menú está abierto */
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Navegación: panel desplegable en móvil --- */
.main-nav {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: .5rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(194, 161, 92, .25);
  /* Oculto por defecto */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.nav-open .main-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav a {
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: .9rem 0;       /* botones grandes, cómodos con el pulgar */
  border-bottom: 1px solid rgba(240, 236, 225, .08);
}
.main-nav a:active { color: var(--gold); }

.main-nav .nav-cta {
  margin-top: .75rem;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  border-radius: 999px;
  padding: .8rem 1.5rem;
  border-bottom: 0;
  font-weight: 500;
}

/* ============================================================
   HERO a pantalla completa
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;          /* alto completo también en móvil moderno */
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* la foto nunca se deforma */
  object-position: center;
}

/* Degradado para que el texto siempre sea legible sobre la foto */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 32, 56, .55) 0%,
    rgba(11, 32, 56, .28) 35%,
    rgba(11, 32, 56, .62) 62%,
    rgba(11, 32, 56, .92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
  padding-bottom: 5.5rem;
  padding-top: calc(var(--header-h) + 2rem);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  white-space: nowrap;
  font-weight: 500;
  color: var(--gold-2);
  background: rgba(11, 32, 56, .55);   /* chip oscuro: legible sobre cualquier foto */
  border: 1px solid rgba(212, 184, 120, .45);
  border-radius: 999px;
  padding: .45rem 1.1rem .45rem .95rem;
  backdrop-filter: blur(3px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
  margin-bottom: 1rem;
}
.hero-kicker i { font-size: .85rem; }

.hero h1 {
  font-size: clamp(1.85rem, 7.5vw, 3.4rem);
  font-weight: 500;                     /* más peso: legible sobre la foto */
  max-width: 18ch;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55), 0 4px 24px rgba(0, 0, 0, .45);
}

.hero-sub {
  max-width: 42ch;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6), 0 3px 14px rgba(0, 0, 0, .45);
}

.hero-ctas {
  display: flex;
  flex-direction: column;      /* en móvil, botones apilados a todo ancho */
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-award {
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .05em;
}
.hero-award i { color: var(--gold); margin-right: .4rem; }

.hero-scroll {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cream);
  font-size: 1.1rem;
  opacity: .7;
  animation: flotar 2.2s ease-in-out infinite;
}
@keyframes flotar {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ============================================================
   BOTONES — grandes y pulsables (mínimo 48 px de alto)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, color .25s, transform .15s;
  border: 0;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }

.btn-ghost {
  background: rgba(240, 236, 225, .08);
  color: var(--cream);
  border: 1px solid rgba(240, 236, 225, .5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(240, 236, 225, .18); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; }

.btn-block { width: 100%; }

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.section { padding: 4rem 0; }

.section-kicker {
  font-family: 'Jost', sans-serif;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-intro {
  max-width: 60ch;
  margin-bottom: 2rem;
  color: #4a5766;
}

/* Secciones oscuras (azul marino) */
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-dark .section-intro { color: var(--muted); }

/* ============================================================
   EL BARCO — ficha técnica
   ============================================================ */
.specs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 columnas en móvil */
  gap: .9rem;
  margin-bottom: 2rem;
}

.specs-grid li {
  background: var(--white);
  border: 1px solid #e8e2d5;
  border-radius: var(--radius);
  padding: 1.1rem .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.specs-grid i { color: var(--gold); font-size: 1.3rem; margin-bottom: .35rem; }

.spec-num {
  font-family: 'Jost', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
}

.spec-label {
  font-size: .8rem;
  color: #7b8794;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.award-band {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.award-band i { color: var(--gold); font-size: 1.6rem; flex-shrink: 0; }
.award-band strong { color: var(--gold); }

/* ============================================================
   GALERÍA — grid + lightbox. Las fotos lucen grandes y nítidas
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 columnas en móvil */
  gap: .6rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-2);
}

/* Las fotos destacadas ocupan las 2 columnas y más alto */
.gallery-item--big {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;                        /* nunca se deforman */
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   INCLUYE / NO INCLUYE
   ============================================================ */
.two-cols {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.card-si h3 i { color: var(--ok); }
.card-no h3 i { color: var(--error); }

.card ul { list-style: none; }
.card li {
  padding: .55rem 0;
  border-bottom: 1px dashed #e8e2d5;
}
.card li:last-child { border-bottom: 0; }

.card-note {
  margin-top: 1rem;
  font-size: .9rem;
  color: #4a5766;
  background: var(--bg);
  border-radius: 8px;
  padding: .7rem .9rem;
}
.card-note i { color: var(--gold); margin-right: .35rem; }

/* ============================================================
   EL PATRÓN / LA EXPERIENCIA
   ============================================================ */
.patron-texto { max-width: 65ch; }   /* línea de lectura cómoda */

.patron-texto p { margin-bottom: 1rem; color: var(--cream); }
.patron-texto strong { color: var(--gold); }

.patron-lema {
  font-family: 'Jost', sans-serif;
  letter-spacing: .18em;
  font-size: .95rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* ============================================================
   PRECIOS Y TEMPORADAS
   ============================================================ */
/* La tabla scrollea horizontal si no cabe (móviles muy estrechos) */
.tabla-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.tabla-precios {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;          /* compacta: cabe entera a 360–390 px */
}

.tabla-precios th, .tabla-precios td {
  padding: .75rem .45rem;
  text-align: left;
  white-space: nowrap;        /* fechas y precios en una sola línea */
}

/* Precios alineados a la derecha */
.tabla-precios th:nth-child(n+2),
.tabla-precios td:nth-child(n+2) { text-align: right; }
.tabla-precios th:first-child, .tabla-precios td:first-child { padding-left: .9rem; }
.tabla-precios th:last-child,  .tabla-precios td:last-child  { padding-right: .9rem; }

.tabla-precios thead {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .72rem;
}

.tabla-precios tbody tr:nth-child(even) { background: #faf8f3; }
.tabla-precios td:nth-child(2),
.tabla-precios td:nth-child(3) { font-weight: 600; color: var(--navy); }

/* Temporada alta destacada en dorado */
.fila-alta { background: rgba(194, 161, 92, .15) !important; }
.tag {
  display: block;             /* en móvil baja a su propia línea */
  width: fit-content;
  margin-top: .3rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .15rem .6rem;
}

.condiciones {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
  font-size: .95rem;
  color: #4a5766;
}
.condiciones i { color: var(--gold); width: 1.6rem; }

.cta-band {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 1rem;
  text-align: center;
}

/* ============================================================
   EQUIPAMIENTO
   ============================================================ */
.equip-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-top: 2rem;
}

.equip-grid li {
  background: var(--navy-2);
  border: 1px solid rgba(194, 161, 92, .2);
  border-radius: 10px;
  padding: .9rem 1rem;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.equip-grid i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }

/* ============================================================
   CONTACTO / RESERVA
   ============================================================ */
.contacto-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.form-reserva {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

/* Honeypot invisible para humanos */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;               /* campos cómodos para el pulgar */
  padding: .8rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid #ddd5c4;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.form-row textarea { min-height: 110px; resize: vertical; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 161, 92, .25);
}

.form-row-2 { display: grid; gap: 1.1rem; }

/* Casilla de consentimiento RGPD */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: 0 0 1.25rem;
  font-size: .85rem;
  line-height: 1.5;
  color: #4a5766;
}
.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form-consent label { cursor: pointer; }
.form-consent a { text-decoration: underline; }

.form-legal {
  font-size: .78rem;
  color: #8a94a0;
  margin-top: .9rem;
  text-align: center;
}
.form-legal a { color: #8a94a0; text-decoration: underline; }
.form-legal a:hover { color: var(--gold); }

/* Avisos de envío */
.alert {
  display: flex;
  align-items: center;
  gap: .8rem;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.alert-ok    { background: #e8f5e9; color: var(--ok); }
.alert-error { background: #fdecea; color: var(--error); }

/* Columna de datos directos */
.contacto-datos h3 { margin-bottom: 1rem; }

.datos-lista {
  list-style: none;
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
}
.datos-lista i { color: var(--gold); width: 1.6rem; }

.dato-pendiente { margin-bottom: 1rem; color: #4a5766; }
.dato-pendiente i { color: #25d366; margin-right: .3rem; }

.mini-mapa {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  font-size: .92rem;
  color: #4a5766;
}
.mini-mapa i { color: var(--gold); font-size: 1.4rem; margin-top: .2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-claim { color: var(--muted); font-size: .92rem; }

.footer-col h3 {
  font-size: .9rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: .8rem;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: .3rem 0; }
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); margin-right: .4rem; }

.footer-bottom {
  border-top: 1px solid rgba(240, 236, 225, .12);
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom));
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}
.footer-aviso { margin-bottom: .5rem; }
.footer-aviso i { color: var(--gold); margin-right: .3rem; }

/* Enlaces legales: en móvil se apilan y son cómodos de pulsar */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1.25rem;
  margin: 1rem 0;
}
.footer-legal a {
  color: var(--cream);
  padding: .35rem 0;      /* área táctil suficiente */
  font-size: .82rem;
}
.footer-legal a:hover { color: var(--gold); }

.footer-empresa {
  margin-top: .35rem;
  font-size: .76rem;
  color: rgba(183, 174, 156, .8);
}

/* ============================================================
   PÁGINAS LEGALES (aviso legal, privacidad, cookies, condiciones)
   ============================================================ */
.legal {
  /* Deja hueco para el header fijo */
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
}

.legal-cuerpo { max-width: 72ch; }

.legal-cuerpo h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  margin-bottom: .5rem;
}

.legal-fecha {
  font-size: .82rem;
  color: #8a94a0;
  margin-bottom: 2rem;
}

.legal-intro {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.legal-cuerpo h2 {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  margin: 2.5rem 0 .8rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e3ddcf;
  color: var(--navy);
}

.legal-cuerpo p,
.legal-cuerpo ul,
.legal-cuerpo ol,
.legal-cuerpo .tabla-wrap { margin-bottom: 1.1rem; }

.legal-cuerpo ul,
.legal-cuerpo ol { padding-left: 1.3rem; }
.legal-cuerpo li { margin-bottom: .45rem; }

.legal-cuerpo a { text-decoration: underline; }
.legal-cuerpo a:hover { color: var(--navy); }

.legal-cuerpo strong { color: var(--navy); }

/* Ficha de datos identificativos de la empresa */
.datos-empresa {
  background: var(--white);
  border: 1px solid #e8e2d5;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
}
.datos-empresa > div {
  padding: .6rem 0;
  border-bottom: 1px dashed #e8e2d5;
}
.datos-empresa > div:last-child { border-bottom: 0; }
.datos-empresa dt {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7b8794;
  margin-bottom: .15rem;
}
.datos-empresa dd { color: var(--navy); font-weight: 500; }

/* Tablas dentro de los textos legales */
.tabla-legal {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.tabla-legal thead {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .72rem;
}
.tabla-legal th,
.tabla-legal td {
  padding: .7rem .9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #eee7d9;
}
.tabla-legal tbody tr:nth-child(even) { background: #faf8f3; }
.tabla-legal tbody tr:last-child td { border-bottom: 0; }

.legal-volver {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e3ddcf;
}
.legal-volver a { text-decoration: none; }
.legal-volver i { margin-right: .4rem; }

/* ============================================================
   BOTÓN FLOTANTE WHATSAPP — fijo, siempre a mano en móvil
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
  transition: transform .2s;
}
.whatsapp-float:active { transform: scale(.92); }

/* ============================================================
   TABLET Y ESCRITORIO (mobile-first: ampliamos desde aquí)
   ============================================================ */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }        /* botones en línea */
  .btn-block { width: auto; }
  .form-reserva .btn-block { width: 100%; }  /* el submit sí ocupa todo */
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .two-cols { grid-template-columns: 1fr 1fr; }
  .condiciones { grid-template-columns: 1fr 1fr; }
  .equip-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .gallery-item--big { grid-column: span 2; aspect-ratio: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  :root { --header-h: 76px; }

  .brand img { height: 48px; }

  /* En escritorio el menú es horizontal y el botón hamburguesa desaparece */
  .nav-toggle { display: none; }

  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }
  .main-nav a {
    padding: .4rem 0;
    border-bottom: 0;
    font-size: .85rem;
    position: relative;
    white-space: nowrap;   /* "El barco", "La experiencia" en una línea */
  }
  /* Subrayado dorado animado al pasar el ratón */
  .main-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s;
  }
  .main-nav a:not(.nav-cta):hover::after { width: 100%; }
  .main-nav a:hover { color: var(--gold); }
  .main-nav .nav-cta { margin-top: 0; padding: .6rem 1.4rem; }
  .main-nav .nav-cta:hover { background: var(--gold-2); color: var(--navy); }

  .section { padding: 5.5rem 0; }

  /* En escritorio la tabla respira más y la etiqueta vuelve a la línea */
  .tabla-precios { font-size: .95rem; }
  .tabla-precios th, .tabla-precios td { padding: .85rem 1rem; }
  .tag { display: inline-block; margin-top: 0; margin-left: .5rem; }

  .specs-grid { grid-template-columns: repeat(6, 1fr); }

  .gallery { grid-template-columns: repeat(4, 1fr); }

  .contacto-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    padding: 1.75rem 2.25rem;
  }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ---------- Accesibilidad: menos animaciones si el usuario lo pide ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll { animation: none; }
  * { transition-duration: .01ms !important; }
}
