/* =================================================
   APARTAMENTO GRUMETE - CSS ACTUALIZADO
   VERSIÓN: 2026-01-28 23:45
   CAMBIOS: Testimonios grandes + Dots pequeños
   ================================================= */

/* =========================
FUENTES Y RESET
========================= */
@font-face {
  font-family: 'Christmas Wish';
  src: url('../assets/fonts/ChristmasWish-Calligraphy.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img, svg {
  max-width: 100%;
  height: auto;
}
body {
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-top: var(--headerH);
}
::selection {
  background: rgba(201, 164, 106, 0.18);
}

/* =========================
VARIABLES
========================= */
:root {
  --white-warm: #FAF9F7;
  --charcoal: #1E1E1E;
  --blue-main: #015291;
  --gold-soft: #C9A46A;
  --gray-text: #7D7D7D;
  --gray-soft: #8A8A8A;
  --menu-muted: #A89070;
  --bg: var(--white-warm);
  --ink: var(--charcoal);
  --brand: var(--blue-main);
  --muted: var(--gray-text);
  --sand: #f5f0eb;
  --sand-alt: #F5F3F0;
  --footer-dark: #2A2A2A;
  --max: 1120px;
  --pad: clamp(18px, 3.5vw, 48px);
  --headerH: 76px;
}

/* =========================
SAFE AREAS (iOS notch)
========================= */
@supports (padding-top: env(safe-area-inset-top)) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  footer {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: clamp(52px, 8vw, 96px) 0;
}

/* =========================
TIPOGRAFÍA
========================= */
.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--menu-muted);
}
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
h1 {
  line-height: 1.1;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  text-align: center;
}
h1 .line1 {
  display: block;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
h1 .line2 {
  display: block;
  color: var(--gold-soft);
  font-size: 0.96em;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-style: italic;
  margin-top: 0.08em;
  white-space: nowrap;
}
h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.muted {
  color: var(--muted);
}

/* =========================
HEADER
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Header opaco al hacer scroll */
header.scrolled {
  background: #FAF9F7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--headerH);
}
.brandlink {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.mark {
  height: 52px;
  width: auto;
  filter: brightness(0) saturate(0%) brightness(0.12);
  transition: filter 0.3s ease;
}
header.scrolled .mark {
  filter: none;
}
/* ---- RIGHTTOOLS (contenedor lang + cta) ---- */
.righttools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ---- SELECTOR DE IDIOMA — OPCIÓN A (dropdown) ---- */
.lang-dropdown {
  position: relative;
  margin-right: 4px;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 2px;
  transition: color 0.2s;
}

.lang-trigger:hover {
  color: var(--brand);
}

.lang-arrow {
  font-size: 0.6rem;
  color: var(--gold-soft);
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #2A2A2A;
  border: 1px solid rgba(201, 164, 106, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 72px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #9CA3AF;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.lang-option.active {
  color: var(--gold-soft);
  font-weight: 700;
  pointer-events: none;
}

/* ✅ BOTÓN HAMBURGUESA */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle-bars {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: all 0.25s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { bottom: -6px; }

/* ✅ ANIMACIÓN X DEL HAMBURGUESA */
header.menu-open .nav-toggle-bars {
  background: transparent;
}
header.menu-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
header.menu-open .nav-toggle-bars::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
}
.navlinks a {
  text-decoration: none;
  color: var(--menu-muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.25s ease;
}
.navlinks a:hover {
  color: var(--brand);
}
.navlinks a:hover:after {
  width: 100%;
}
.cta-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(1, 82, 145, 0.28);
  background: rgba(250, 249, 247, 0.75);
  color: var(--brand);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.cta-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(1, 82, 145, 0.12);
  background: #fff;
}

/* =========================
MENÚ DESPLEGABLE
========================= */
.nav-dropdown {
  position: fixed;
  top: var(--headerH);
  right: var(--pad);
  background: #2A2A2A;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 9998;
  min-width: 220px;
  width: auto;
  max-width: 90vw;
  border-radius: 0;
  border: 1px solid rgba(201, 164, 106, 0.2);
}
.nav-dropdown-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ✅ MENÚ VERTICAL EN DROPDOWN */
.nav-dropdown .navlinks {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}

.nav-dropdown .navlinks a {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #9CA3AF;
}

.nav-dropdown .navlinks a:last-child {
  border-bottom: none;
}

.nav-dropdown .navlinks a:hover {
  color: white;
}

header.menu-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
HERO
========================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at center, rgba(235,240,248,0.82) 0%, rgba(215,228,242,0.18) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(201, 164, 106, 0.38) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  padding-top: var(--headerH);
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 0 20px;
  justify-content: center;
  min-height: calc(100svh - var(--headerH));
}
.hero-sub {
  color: var(--gray-text);
  margin: 14px auto 0;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  max-width: 56ch;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.micro {
  font-size: 0.83rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.micro strong {
  font-weight: 700;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0;
  background: var(--charcoal);
  color: var(--white-warm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cta:hover {
  background: #111111;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* =========================
SECCIONES
========================= */

/* LO ESENCIAL - DISEÑO HORIZONTAL COMPACTO SIN HEADER */
.essential {
  background: var(--sand-alt);
}

.essential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.essential-card {
  background: white;
  border: 1px solid rgba(201, 164, 106, 0.12);
  padding: 1.5rem 1.3rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.essential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 164, 106, 0.24);
}

.card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.16);
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-soft);
  fill: none;
  stroke-width: 1.6;
}

.card-icon svg circle[fill] {
  fill: var(--gold-soft);
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.services-link {
  text-align: center;
  margin-top: 2.5rem;
}

.services-link a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

.services-link a:hover {
  border-bottom-color: var(--gold-soft);
}

/* SPLIT SECTIONS */
#apartamento {
  background: var(--white-warm);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
}
.card-media {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(30, 30, 30, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.12);
  background: #fff;
}
.card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.copy p {
  margin-top: 14px;
  max-width: 60ch;
  color: var(--gray-soft);
  font-size: 1.02rem;
}
.gallery {
  background: var(--sand-alt);
}
.gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

/* ✅ GALLERY ROW CON SCROLLBAR PERSONALIZADO */
.gallery-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 164, 106, 0.3) rgba(201, 164, 106, 0.08);
}

/* Chrome, Safari, Edge - Scrollbar personalizado */
.gallery-row::-webkit-scrollbar {
  height: 6px;
}

.gallery-row::-webkit-scrollbar-track {
  background: rgba(201, 164, 106, 0.08);
  border-radius: 3px;
}

.gallery-row::-webkit-scrollbar-thumb {
  background: rgba(201, 164, 106, 0.3);
  border-radius: 3px;
  transition: background 0.2s ease;
}


.gallery-row::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 164, 106, 0.45);
}
}
}
}

.g-item {
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 106, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.g-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ✅ YOUTUBE SHORT STYLES */
.youtube-short {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  min-height: 240px;
  background: rgba(0, 0, 0, 0.02);
  transition: background 0.2s ease;
}
.youtube-short:hover {
  background: rgba(0, 0, 0, 0.05);
}

.booking {
  background: var(--sand-alt);
  padding: clamp(52px, 8vw, 96px) 0;
}
.booking-col-secondary {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0;
  margin-top: 24px;
  margin-bottom: 0;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.booking-col-secondary h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--ink);
}
.platform-logos {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

/* ✅ TARJETAS PLATAFORMAS */
.platform-inner-card {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
}

/* ✅ ENLACES PLATAFORMAS SIN BORDES */
.platform-inner-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: none;
  outline: none;
}

/* ✅ IMÁGENES PLATAFORMAS 100% SIN BORDES */
.platform-inner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  box-shadow: none;
  filter: none;
  outline: none;
  display: block;
}

/* ✅ TAG BADGE */
.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold-soft);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-radius: 0;
}

.direct-benefits {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.direct-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-soft);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.16);
  flex: 0 0 auto;
}
.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-soft);
  fill: none;
}
.benefit-icon svg circle[fill],
.benefit-icon svg path[fill] {
  fill: var(--gold-soft);
}
.booking-col.full-width {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 8px 24px rgba(201, 164, 106, 0.12);
  background: #fff;
  border-radius: 0;
  max-width: var(--max);
  margin: 0 auto;
  margin-bottom: 0;
}
.booking-col.full-width h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
  color: var(--ink);
}
.trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

/* =========================
FOOTER
========================= */
footer {
  padding: 48px 0 64px;
  background-color: var(--footer-dark);
  color: #9CA3AF;
}
.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-left {
  flex: 1;
}
.footer-right {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.16);
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: rgba(201, 164, 106, 0.14);
  border-color: rgba(201, 164, 106, 0.24);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-soft);
  fill: none;
}
.social-icon svg circle[fill],
.social-icon svg path[fill],
.social-icon svg circle {
  fill: var(--gold-soft);
}
.footer-legal a {
  color: var(--gray-text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-legal a:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.footer-legal {
  font-size: 0.9rem;
}
.footer-brand {
  font-family: 'Christmas Wish', cursive;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  line-height: 1.1;
  margin-bottom: 8px;
}
.footer-credit {
  font-size: 0.85rem;
  color: var(--gray-text);
  opacity: 0.85;
}

/* =========================
SECCIÓN DE CONTACTO
========================= */
.contact {
  background: var(--white-warm);
}

.contact > .container > .muted {
  white-space: nowrap;
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(201, 164, 106, 0.12);
  border-radius: 0;
  padding: 28px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 164, 106, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(201, 164, 106, 0.16);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(201, 164, 106, 0.14);
  border-color: rgba(201, 164, 106, 0.24);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-soft);
  fill: none;
}

.contact-icon svg circle {
  fill: var(--gold-soft);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-card .muted {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.email-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.email-link:hover {
  border-bottom-color: var(--brand);
}

.trust-note {
  margin-top: 40px;
  text-align: center;
}

.trust-note strong {
  color: var(--gold-soft);
}

/* =========================
AMENITIES / EQUIPACIÓN
========================= */
.amenities {
  background: white;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 40px;
}

.amenity-category {
  background: white;
  border: 1px solid rgba(201, 164, 106, 0.12);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 164, 106, 0.24);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.16);
  margin: 0 auto 20px;
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-soft);
  fill: none;
}

.amenity-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--brand);
  margin-bottom: 16px;
}

.amenity-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.amenity-category li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-soft);
  line-height: 1.5;
}

.amenity-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  font-weight: bold;
}

/* =========================
UBICACIÓN / LOCATION
========================= */
.location {
  background: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.location-map {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.location-distances {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid rgba(201, 164, 106, 0.12);
  transition: all 0.3s ease;
}

.distance-item:hover {
  transform: translateX(4px);
  border-color: rgba(201, 164, 106, 0.24);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.distance-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.16);
}

.distance-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-soft);
  fill: none;
}

.distance-icon svg circle {
  fill: var(--gold-soft);
}

.distance-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.distance-text strong {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.distance-text span {
  font-size: 0.88rem;
  color: var(--gray-soft);
}

/* =========================
ACCESIBILIDAD
========================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
INTERACCIÓN TÁCTIL
========================= */
button,
a.btn,
.cta,
.cta-mini {
  min-height: 44px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* =========================
MEDIA QUERIES - RESPONSIVE
========================= */

/* ✅ TABLET & MOBILE: 1024px y menor */
@media (max-width: 1024px) {
  /* Reordenar: logo → idioma → hamburguesa */
  .nav {
    display: flex;
    gap: 12px;
  }
  
  /* Logo al inicio */
  .brandlink {
    order: 1;
    flex: 1;
  }
  
  /* righttools: solo visible el lang, antes del hamburguesa */
  .nav > .righttools {
    display: flex;
    align-items: center;
    gap: 0;
    order: 2;
    margin-right: 0;
  }
  
  .nav > .righttools > .lang-dropdown {
    display: flex;
  }
  
  /* Ocultar "Reserva directa" en móvil/tablet */
  .nav > .righttools > .cta-mini {
    display: none;
  }
  
  /* Hamburguesa al final (orden 3) */
  .nav-toggle {
    display: flex !important;
    order: 3;
  }
  
  /* Ocultar navlinks desktop */
  .nav > .navlinks {
    display: none;
  }
}

/* ✅ TABLET PORTRAIT: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* Permitir wrap en títulos iPad vertical */
  h1 .line1,
  h1 .line2 {
    white-space: normal;
  }
  
  /* Centrar cojines en hero (ajuste calculado -0.1cm = 42.375%) */
  .hero-media img {
    object-position: 42.375% 32%;
  }
  
  .essential-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ✅ MOBILE: 767px y menor */
@media (max-width: 767px) {
  /* Hero */
  h1 .line1,
  h1 .line2 {
    white-space: normal;
  }
  
  h1 {
    font-size: clamp(2.2rem, 8vw, 4.2rem);
  }
  
  .hero-grid {
    padding: 0 16px;
  }
  
  /* Centrar cojines en hero móvil (ligeramente hacia derecha) */
  .hero-media img {
    object-position: 45% 35%;
  }
  
  /* Essential */
  .essential-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .essential-card {
    padding: 2rem 1.5rem;
  }
  
  /* Split sections */
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Gallery */
  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  /* Booking */
  .booking-col-secondary {
    padding: 20px;
  }
  
  .platform-logos {
    flex-direction: column;
    gap: 16px;
  }
  
  .booking-col.full-width {
    padding: 24px 18px;
  }
  
  .direct-benefits {
    text-align: left;
  }
  
  .trust {
    flex-direction: column;
    text-align: center;
  }
  
  /* Amenities */
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .amenity-category {
    padding: 24px 20px;
  }
  
  /* Location */
  .location-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .location-map iframe {
    height: 300px;
  }
  
  .distance-item {
    padding: 14px;
  }
  
  /* Footer */
  .footer-row {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-right {
    text-align: left;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 24px 20px;
  }
  
  .contact > .container > .muted {
    white-space: normal;
  }
}

/* ✅ SMALL MOBILE: 480px y menor */
@media (max-width: 480px) {
  :root {
    --pad: 16px;
  }
  
  .mark {
    height: 42px;
  }
  
  .micro {
    font-size: 0.78rem;
  }
  
  .section {
    padding: clamp(40px, 6vw, 72px) 0;
  }
}
/* =========================
TESTIMONIOS
========================= */
/* =========================
TESTIMONIOS MINIMALISTA - OPCIÓN 1
/* =========================
TESTIMONIOS - TEXTO GRANDE ORIGINAL + DOTS PEQUEÑOS CIRCULARES
========================= */

.testimonials-minimal {
  background: var(--sand-alt);
  padding: clamp(52px, 8vw, 96px) 0;
}

.testimonials-minimal .container {
  max-width: var(--max);
}

/* Carousel container */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

/* Track */
.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

/* Cada slide */
.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 28px);
  align-items: center;
  padding: 0 clamp(24px, 4vw, 40px);
  min-height: 300px; /* Altura original */
  justify-content: center;
  box-sizing: border-box;
}

/* Quote - TAMAÑO ORIGINAL GRANDE */
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); /* Tamaño original grande */
  line-height: 1.6; /* Line-height original */
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  max-width: 700px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -20px;
  font-size: 4rem; /* Tamaño original */
  color: var(--gold-soft);
  opacity: 0.15; /* Opacidad original */
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

/* Meta info */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-stars {
  color: var(--gold-soft);
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-rating {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================
   FLECHAS DE NAVEGACIÓN - QUIET LUXURY
   Flechas a los lados del testimonio
   ============================ */

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.testimonials-nav .testimonials-carousel {
  flex: 1;
  min-width: 0;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(201, 164, 106, 0.6);
  transition: color 0.35s ease, opacity 0.35s ease;
  padding: 0;
  outline: none;
}

.testimonials-arrow svg {
  width: 22px;
  height: 22px;
}

.testimonials-arrow:hover {
  color: rgba(201, 164, 106, 0.95);
}

.testimonials-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =========================
RESPONSIVE - FLECHAS
========================= */

@media (max-width: 767px) {
  .testimonials-arrow {
    width: 32px;
  }

  .testimonials-arrow svg {
    width: 18px;
    height: 18px;
  }
}
/* Footer */
.testimonial-footer {
  text-align: center;
  padding-top: clamp(20px, 3vw, 28px);
}

.testimonial-footer a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

.testimonial-footer a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}


/* Columna derecha: cartas + notas prácticas */
.location-right {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Notas prácticas inferiores */
.location-airport {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 2px 20px;
}

.location-airport:first-of-type {
  padding-top: 12px;
}

.location-airport-text {
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.location-airport-detail {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  margin-left: auto;
  white-space: nowrap;
}

/* =========================
RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .testimonials-minimal {
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 7vw, 56px);
  }
  
  .testimonial-quote {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  }
  
  .testimonial-slide {
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-minimal {
    padding: 56px 0 40px;
  }
  
  .testimonials-minimal .container {
    max-width: 100%;
  }
  
  .testimonial-slide {
    gap: 20px;
    padding: 0 24px;
    min-height: 320px;
    flex: 0 0 100%;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.65;
  }
  
  .testimonial-quote::before {
    font-size: 3rem;
    left: -8px;
    top: -15px;
    opacity: 0.12;
  }
  
  .testimonial-meta {
    gap: 12px;
    flex-direction: column;
  }
  
  .testimonial-stars {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .testimonial-rating {
    font-size: 1.15rem;
  }
  
  .testimonial-author {
    font-size: 0.85rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  .testimonial-slide {
    padding: 0 20px;
    min-height: 340px;
  }
}

/* =========================
LOCALIZACIÓN - TARJETAS COMPACTAS CON MÁS ESPACIO
========================= */

.location-minimal {
  background: var(--white-warm);
  padding: clamp(52px, 8vw, 96px) 0;
}

.location-minimal .container {
  max-width: var(--max);
}

.location-minimal h2 {
  margin-bottom: 2rem;
}

/* Layout lado a lado: mapa izquierda, tarjetas derecha */
.location-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

/* Mapa — izquierda */
.location-map-static {
  order: 1;
  border: 1px solid rgba(201, 164, 106, 0.15);
  overflow: hidden;
  position: relative;
}

/* Iframe del mapa — ocupa toda la altura del contenedor */
.location-map-static iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: sepia(30%) saturate(70%) brightness(1.05) contrast(0.93) hue-rotate(8deg);
}

/* Cartas — derecha, 2 columnas × 3 filas, misma altura que el mapa */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: none;
  margin: 0;
  align-content: stretch;
  flex: 1;
}

.location-grid .location-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-text);
  background: rgba(250, 249, 247, 0.92);
  padding: 8px 14px;
  border: 1px solid rgba(201, 164, 106, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.location-map-link:hover {
  color: var(--brand);
  border-color: rgba(201, 164, 106, 0.4);
}

.location-map-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Grid de tarjetas: ver regla principal arriba */

.location-item {
  padding: clamp(20px, 3.5vw, 26px) clamp(18px, 3vw, 24px);
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(250, 249, 247, 0.6);
  border: 1px solid rgba(201, 164, 106, 0.12);
  border-radius: 2px;
}

.location-item:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(201, 164, 106, 0.2);
}

.location-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

.location-distance {
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}


/* =========================
RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .location-minimal {
    padding: clamp(52px, 8vw, 96px) 0;
  }
  .location-minimal h2 {
    margin-bottom: 40px;
  }
  .location-body {
    gap: 24px;
  }
  .location-item {
    padding: 20px 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .location-minimal {
    padding: 52px 0;
  }
  .location-body {
    grid-template-columns: 1fr;
  }
  .location-map-static {
    order: 1;
    min-height: 240px;
  }
  .location-right {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .location-grid {
    order: 1;
  }
  .location-airport {
    order: 3;
  }
  .location-map-static iframe {
    height: 260px;
  }
  .location-grid {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
  }
  .location-minimal .eyebrow,
  .location-minimal h2 {
    text-align: left;
  }
  .location-minimal h2 {
    margin-bottom: 36px;
  }
  
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 10px;
    padding: 0 20px;
  }
  
  .location-item {
    padding: 22px 18px;
  }
  
  .location-name {
    font-size: 1.02rem;
  }
  
  .location-distance {
    font-size: 0.84rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 16px;
  }
  
  .location-item {
    padding: 20px 16px;
  }
  
  .location-name {
    font-size: 0.98rem;
  }
}

/* Líneas de reconocimiento */
.recognition-line {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}

.recognition-proud {
  color: var(--gold-soft);
  opacity: 0.85;
}

/* Footer tagline y licencia */
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  font-style: italic;
  margin-bottom: 4px;
}

.footer-license {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #6B7280;
  margin-bottom: 6px;
}
/* =====================================================
   APARTAMENTO GRUMETE — CSS ADDITIONS v2.1
   SOLO estilos nuevos. No sobreescribe nada del style.css.
   ===================================================== */

/* ── STICKY CTA MÓVIL ── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #1E1E1E;
  border-top: 1px solid rgba(201, 164, 106, 0.3);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.sticky-cta-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: #C9A46A;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.2;
}

.sticky-cta-price span {
  font-size: 0.75rem;
  font-family: "Lato", sans-serif;
  color: #9CA3AF;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-height: 44px;
  padding: 0 22px;
  background: #C9A46A;
  color: #1E1E1E;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.sticky-cta-btn:hover {
  background: #b8933a;
}

@media (max-width: 1024px) {
  .sticky-cta-mobile {
    display: block;
  }
}

@media (min-width: 1025px) {
  .sticky-cta-mobile {
    display: none !important;
  }
}


/* ── SECCIÓN ANFITRIÓN ── */
.host-section {
  padding: clamp(52px, 8vw, 96px) 0;
  background: #F5F3F0;
}

.host-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.host-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #2A2A2A;
  border: 2px solid rgba(201, 164, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #C9A46A;
}

.host-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.65;
}

.host-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid rgba(201, 164, 106, 0.3);
  display: block;
  flex-shrink: 0;
}

.host-copy .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.host-copy h2 {
  margin-bottom: 14px;
}

.host-copy p {
  color: #7D7D7D;
  line-height: 1.75;
  font-size: 0.97rem;
  max-width: 54ch;
}

.host-copy p + p {
  margin-top: 10px;
}

.host-signature {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #C9A46A;
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (max-width: 620px) {
  .host-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .host-photo,
  .host-photo-placeholder {
    width: 140px;
    height: 140px;
  }

  .host-copy p {
    max-width: 100%;
  }
}

/* ── BOOKING META (check-in, mínimo, cancelación) ── */
.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 20px;
  margin-bottom: 16px;
  padding: 16px 18px;
  background: rgba(201, 164, 106, 0.07);
  border-left: 2px solid rgba(201, 164, 106, 0.45);
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #7D7D7D;
  font-family: "Lato", sans-serif;
  line-height: 1.4;
}

.booking-meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: #C9A46A;
}

.booking-meta-item strong {
  color: #1E1E1E;
  font-weight: 600;
}

/* ── NOTA CANCELACIÓN BAJO EL CTA ── */
.cancel-note {
  margin-top: 10px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: #7D7D7D;
  letter-spacing: 0.02em;
}

.cancel-note::before {
  content: "✓ ";
  color: #C9A46A;
  font-weight: 700;
}

/* ── TRADUCCIÓN EN TESTIMONIOS ── */
.testimonial-translation {
  font-size: 0.81rem;
  font-style: italic;
  color: #8A8A8A;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 164, 106, 0.14);
  line-height: 1.6;
}

/* ── HERO PRICE ── */
.hero-price {
  margin-top: 14px;
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(250, 249, 247, 0.72);
  text-transform: uppercase;
}
.hero-price strong {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── BOOKING LICENSE ── */
.booking-license {
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 6px;
}
.booking-license::before {
  content: "✓ ";
  color: var(--gold-soft);
}

/* ── PLATAFORMAS — ENLACES TEXTO (sin logos) ── */
.platforms-eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.platform-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.platform-link {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.platform-link:hover {
  color: var(--ink);
}

/* ── PLATAFORMAS OPCIÓN D — editorial, cursiva, discreta ── */
.booking-col-secondary {
  padding-top: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: 0;
}

.platform-opt-d {
  text-align: center;
  padding-top: 20px;
  position: relative;
}

.platform-opt-d::before {
  content: "· · ·";
  display: block;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  opacity: 0.45;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.platform-opt-d-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.platform-opt-d-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.platform-opt-d-links a:hover {
  color: var(--ink);
}

.platform-sep {
  color: var(--gold-soft);
  opacity: 0.4;
  font-size: 0.85rem;
}

.platform-note {
  font-family: "Lato", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BABABA;
  margin-top: 10px;
}
