:root {
  /* Paleta de marca Cattleya — turquesa + dorado real */
  --mint-deep: #1F8E84;     /* turquesa profundo (color marca, acento principal) */
  --mint: #2EBFB1;          /* turquesa brillante (logotipo) */
  --mint-soft: #6FCFC4;     /* turquesa suave */
  --mint-pale: #BFE6E0;     /* turquesa pálido */
  --mint-bg: #EEF8F6;       /* fondo lavado turquesa */
  --gold: #C9A961;          /* dorado real (acento marca) */
  --gold-light: #E0B973;    /* dorado luminoso */
  --gold-dark: #A88944;     /* dorado profundo */
  --cream: #FBFAF7;         /* crema neutra (fondo principal) */
  --cream-dark: #F2EFE8;    /* crema cálida */
  --ink: #1F3530;           /* verde-tinta profundo (texto) */
  --ink-soft: #4A6660;      /* verde-tinta medio */
  --ink-light: #8FA39E;     /* verde-tinta claro */
  --line: rgba(31, 142, 132, 0.15);
  --shadow: 0 20px 60px -20px rgba(31, 53, 48, 0.18);
  /* Hero turquesa profundo estilo Lūma */
  --hero-bg: #1F8E84;
  --hero-overlay: linear-gradient(180deg, rgba(46,191,177,0.55) 0%, rgba(31,142,132,0.62) 55%, rgba(18,82,76,0.82) 100%);
  /* Acento dorado de marca */
  --brand-gold: #E0B973;
  --brand-gold-deep: #B68A4A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html, body { overflow-x: clip; }
body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--mint); color: var(--cream); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--mint-deep), var(--mint)); border-radius: 10px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; color: var(--ink); }

.script { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ===== TOP BAR — ocultada en rediseño Lūma ===== */
.topbar { display: none !important; }
.topbar-inner, .topbar-left, .topbar-right, .topbar-icon, .topbar-sep, .topbar-tagline {
  /* legacy, conservadas por si el HTML las referencia */
  font-size: 0;
  letter-spacing: 0;
}

/* ===== NAV — minimal Lūma (logo blanco + hamburguesa glass) ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0; background: transparent;
  transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(31, 142, 132, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(31,53,48,0.18);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none; transition: opacity 0.3s ease;
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand img {
  height: 56px; width: auto; transition: height 0.35s ease; display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
}
.nav.scrolled .nav-brand img { height: 44px; }
/* Texto al lado del logo: oculto en el nuevo diseño */
.nav-brand-text, .nav-menu, .nav-actions, .nav-phone, .nav-phone-divider {
  display: none !important;
}
/* Hamburguesa glass circular */
.menu-toggle {
  display: flex; background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28); cursor: pointer;
  flex-direction: column; gap: 5px; z-index: 1001;
  width: 52px; height: 52px; border-radius: 50%;
  align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.menu-toggle:hover { background: rgba(255,255,255,0.22); transform: scale(1.04); }
.menu-toggle span {
  width: 20px; height: 1.5px; background: #fff;
  transition: all 0.3s; display: block; border-radius: 1px;
}
.menu-toggle span:nth-child(2) { width: 14px; align-self: flex-end; margin-right: 16px; }
.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(-6px) rotate(-45deg); width: 20px; }

/* ===== HERO — Lūma full-bleed terracota ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-bg);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: 0 !important;
  margin: 0;
  display: flex;
}
/* Foto de fondo + overlay terracota */
.hero-grid {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 25% 30%, rgba(46,191,177,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(224,185,115,0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, #1F8E84 0%, #15665E 70%, #0E4A45 100%),
    linear-gradient(135deg, #166760 0%, #1F8E84 50%, #145A52 100%);
  background-blend-mode: screen, screen, normal, normal;
  overflow: hidden;
}
/* Capa de foto muy tenue: aporta textura del salón sin ensuciar el turquesa */
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('https://cattleyaeventos.com/wp-content/uploads/2017/03/banner4_-salones-eventos-bogota.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  filter: saturate(0.35) brightness(1.1);
  pointer-events: none;
  animation: heroPhotoZoom 26s ease-out infinite alternate;
}
@keyframes heroPhotoZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
/* Halo cálido que respira */
.hero-bg::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(255,235,180,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 65%, rgba(46,191,177,0.18) 0%, transparent 50%);
  mix-blend-mode: screen;
  animation: heroBreath 18s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(4%, -3%) scale(1.08); opacity: 1; }
}
/* Textura sutil tipo Lūma */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.06) 0%, transparent 8%),
    radial-gradient(circle at 88% 32%, rgba(255,255,255,0.04) 0%, transparent 10%),
    radial-gradient(circle at 22% 78%, rgba(224,185,115,0.08) 0%, transparent 9%),
    radial-gradient(circle at 76% 88%, rgba(255,255,255,0.05) 0%, transparent 8%);
  pointer-events: none;
}

/* ===== Partículas doradas flotantes ===== */
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.hero-particles-layer {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: transform 0.05s linear;
  will-change: transform;
}
.hero-particles-layer.back  { z-index: 1; }
.hero-particles-layer.front { z-index: 2; }
.hero-particle {
  position: absolute; display: block;
  bottom: -20px;
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}
.hero-particle-dot {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,228,170,1) 0%, rgba(244,210,140,1) 35%, rgba(232,196,125,0.85) 60%, rgba(224,185,115,0) 80%);
  box-shadow: 0 0 18px rgba(232,196,125,0.95), 0 0 6px rgba(252,228,170,1);
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0) scale(var(--mscale, 1));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  will-change: transform;
}
.hero-particle.is-soft .hero-particle-dot {
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(228,247,243,0.95) 35%, rgba(207,240,234,0.8) 60%, rgba(255,255,255,0) 80%);
  box-shadow: 0 0 16px rgba(207,240,234,0.9), 0 0 5px rgba(255,255,255,1);
}
.hero-particle.is-big .hero-particle-dot {
  box-shadow: 0 0 26px rgba(232,196,125,1), 0 0 10px rgba(252,228,170,1), 0 0 60px rgba(232,196,125,0.5);
}
.hero-particle.is-big.is-soft .hero-particle-dot {
  box-shadow: 0 0 24px rgba(207,240,234,0.95), 0 0 9px rgba(255,255,255,1), 0 0 55px rgba(207,240,234,0.45);
}
.hero-particle.is-near .hero-particle-dot {
  box-shadow: 0 0 32px rgba(252,228,170,1), 0 0 14px rgba(232,196,125,1), 0 0 70px rgba(232,196,125,0.65);
}
.hero-particle.is-near.is-soft .hero-particle-dot {
  box-shadow: 0 0 30px rgba(255,255,255,1), 0 0 12px rgba(207,240,234,1), 0 0 65px rgba(207,240,234,0.6);
}
@keyframes particleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.6);
    opacity: 0;
  }
  12% { opacity: var(--peak, 0.7); }
  88% { opacity: var(--peak, 0.7); }
  100% {
    transform: translate3d(var(--drift, 30px), calc(-100vh - 40px), 0) scale(1);
    opacity: 0;
  }
}

/* Compatibilidad: el split derecho queda como contenedor de la foto */
.hero-right {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-slides, .hero-slide {
  position: absolute; inset: 0;
}
.hero-slide {
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img { display: none; }
.hero-right::after {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-overlay);
  z-index: 2;
}

/* Contenido textual centrado vertical, izquierda */
.hero-left {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 8% 200px;
  max-width: 880px;
  flex: 1;
}
.hero-left::before { display: none; }

/* Pill "Recomendado" */
.hero-number {
  display: inline-flex; align-self: flex-start;
  align-items: center;
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  color: #fff; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; margin-bottom: 32px;
  padding: 9px 20px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 50px;
}
.hero-number::before { display: none; }
.hero-number sup { color: var(--brand-gold); font-weight: 700; font-size: 11px; margin-right: 6px; vertical-align: baseline; }

/* Heading: serif italic blanco grande estilo Lūma */
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff; margin: 0; font-weight: 400;
  letter-spacing: -0.5px; line-height: 1;
}
.hero h1 .h1-script {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95; margin-bottom: 0;
  /* Dorado de marca sólido + suave glow (compatible con split-letter JS) */
  color: var(--brand-gold);
  text-shadow:
    0 0 24px rgba(244,216,156,0.35),
    0 4px 22px rgba(61,36,24,0.5),
    0 2px 6px rgba(61,36,24,0.4);
}
.hero h1 .h1-bold {
  display: block; font-weight: 400;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  letter-spacing: -1px; color: #fff;
  margin-top: 4px; line-height: 1;
  text-shadow: 0 4px 28px rgba(61,36,24,0.55), 0 2px 8px rgba(61,36,24,0.4);
}

.hero-rule { display: none; }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.55;
  max-width: 520px;
  font-style: italic;
  margin: 32px 0 44px;
  text-shadow: 0 2px 18px rgba(61,36,24,0.55), 0 1px 4px rgba(61,36,24,0.4);
}

/* Botón Listen pill blanco */
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; transition: all 0.35s ease;
  border: none; cursor: pointer; font-family: 'Montserrat', sans-serif;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: #fff; color: var(--mint-deep);
  box-shadow: 0 14px 32px rgba(61,36,24,0.28);
  border: 1px solid rgba(224,185,115,0.4);
}
.btn-primary::before { display: none; }
.btn-primary span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary span::before {
  content: ""; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%23B68A4A'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(61,36,24,0.32); }

.btn-outline {
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff; border: 1px solid rgba(255,255,255,0.32);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Tabs glass pill abajo (Bodas, 15 años, Corporativos…) */
.hero-tabs {
  position: absolute; bottom: 36px; left: 8%; right: 8%; z-index: 3;
  display: flex; gap: 10px; flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.hero-tabs::-webkit-scrollbar { display: none; }
.hero-tab {
  flex: 0 0 auto;
  padding: 11px 22px; border-radius: 50px;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.92); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s ease; white-space: nowrap;
}
.hero-tab:hover, .hero-tab.active {
  background: rgba(255,255,255,0.95); color: var(--mint-deep);
  border-color: rgba(255,255,255,1);
}

/* Meta editorial: oculto en hero Lūma */
.hero-meta { display: none; }
.hero-meta-item, .hero-meta-label, .hero-meta-value { display: none; }

/* Slider legacy: ocultar contador, controles, caption, label vertical */
.hero-gallery-label, .hero-counter, .hero-controls, .hero-caption,
.hero-counter-current, .hero-counter-line, .hero-counter-total,
.hero-arrow, .hero-caption-label, .hero-caption-text { display: none !important; }

/* Botón menú flotante legacy (sobre hero móvil): redirige al nav fijo */
.hero-menu-fab { display: none !important; }

/* Animación de entrada en cascada */
.hero-number, .hero-sub, .hero-cta-group, .hero-tabs {
  opacity: 0;
  animation: softUp 1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-number { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.4s; }
.hero-sub { animation-delay: 1.0s; }
.hero-cta-group { animation-delay: 1.3s; }
.hero-tabs { animation-delay: 1.6s; }
@keyframes softUp {
  0% { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Palabras y letras animadas (legacy) */
.h1-word { display: inline-block; white-space: nowrap; }
.h1-letter {
  display: inline-block;
  opacity: 0; transform: translateY(40px) rotate(6deg);
  filter: blur(8px);
  animation: letterIn 1s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

/* Responsive intermedio */
@media (max-width: 980px) and (min-width: 769px) {
  .hero-left { padding: 130px 6% 180px; }
  .hero-tabs { left: 6%; right: 6%; }
}

/* ===== HERO MOBILE (Lūma, ≤768px) ===== */
@media (max-width: 768px) {
  .nav { padding: 18px 0; }
  .nav-brand img { height: 42px; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero { min-height: 100vh; padding: 0; }
  .hero-left {
    padding: 120px 24px 140px;
    max-width: 100%;
  }
  .hero-number {
    font-size: 10px; padding: 7px 16px;
    margin-bottom: 22px; letter-spacing: 2.5px;
  }
  .hero h1 .h1-script { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero h1 .h1-bold { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.5;
    margin: 24px 0 32px; max-width: 100%;
  }
  .hero-cta-group { gap: 10px; flex-wrap: wrap; }
  .hero-cta-group .btn {
    padding: 14px 24px; font-size: 10.5px; letter-spacing: 2px;
  }
  .hero-tabs {
    left: 0; right: 0; bottom: 28px;
    padding: 0 24px 4px;
  }
  .hero-tab {
    padding: 10px 18px; font-size: 10px; letter-spacing: 1.2px;
  }

  /* Dots y subhead legacy: ocultar */
  .hero-mobile-dots, .hero-subhead, .mobile-nav-strip { display: none !important; }
}
@media (min-width: 769px) {
  .hero-menu-fab, .hero-mobile-dots, .hero-subhead, .mobile-nav-strip { display: none !important; }
}

/* ===== SECTION BASE ===== */
section { padding: 110px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-eyebrow {
  color: var(--mint-deep); font-size: 12px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--mint);
}
.section-title { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 18px; }
.section-title .script { color: var(--mint-deep); font-size: 1em; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== SOBRE NOSOTROS ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; }
.stat { text-align: center; padding: 22px 10px; border-top: 2px solid var(--mint); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--mint-deep); font-weight: 700; line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
.about-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 4px; overflow: hidden; box-shadow: var(--shadow);
  background-color: var(--mint-deep);
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.about-visual:hover img { transform: scale(1.05); }
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(61,36,24,0.8) 100%);
  z-index: 1;
}
.about-visual::after {
  content: ""; position: absolute; top: 30px; right: -30px; bottom: 30px; width: 30px;
  background: var(--gold); border-radius: 4px; z-index: 2;
}
.about-visual-quote {
  position: absolute; bottom: 40px; left: 40px; right: 60px; z-index: 2;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: #fff; font-size: 1.5rem; line-height: 1.4;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.about-visual-quote::before {
  content: """; position: absolute; top: -30px; left: -10px;
  font-size: 5rem; color: var(--gold-light); opacity: 0.6;
  font-family: 'Playfair Display', serif; line-height: 1;
}

/* ===== SERVICIOS PRINCIPALES ===== */
.services-main {
  background: linear-gradient(180deg, var(--cream) 0%, var(--mint-bg) 100%);
  position: relative;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(61,36,24,0.08);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.service-card:hover { transform: translateY(-12px); box-shadow: 0 30px 70px rgba(61,36,24,0.18); }
.service-img-wrap {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--mint), var(--mint-deep));
}
.service-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; display: block;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(61,36,24,0.35));
}
.service-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold); color: #fff; padding: 6px 14px;
  border-radius: 50px; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  box-shadow: 0 4px 12px rgba(216,138,110,0.4);
}
.service-body { padding: 32px 28px; text-align: center; }
.service-body h3 {
  font-size: 1.7rem; margin-bottom: 12px; color: var(--ink);
}
.service-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.service-link {
  color: var(--mint-deep); text-decoration: none; font-weight: 600;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 14px; color: var(--gold-dark); }

/* ===== PLANES ===== */
.plans {
  background: linear-gradient(160deg, var(--mint-deep) 0%, #4a826f 100%);
  color: #fff; position: relative;
  overflow: hidden;
}
.plans::before {
  content: "Planes"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); font-family: 'Playfair Display', serif;
  font-size: 30vw; color: rgba(255,255,255,0.04); font-weight: 700;
  pointer-events: none; white-space: nowrap;
}
.plans .section-title, .plans .section-head h2 { color: #fff; }
.plans .section-title .script { color: var(--gold-light); }
.plans .section-sub { color: rgba(255,255,255,0.85); }
.plans .section-eyebrow { color: var(--gold-light); }
.plans .section-eyebrow::before, .plans .section-eyebrow::after { background: var(--gold-light); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 1; }
.plan-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 6px;
  padding: 36px 24px; text-align: center;
  transition: all 0.4s ease; position: relative;
}
.plan-card:hover {
  transform: translateY(-8px); background: rgba(255,255,255,0.13);
  border-color: var(--gold-light);
}
.plan-card.featured { border: 1.5px solid var(--gold-light); background: rgba(216,138,110,0.15); }
.plan-card.featured::before {
  content: "Más elegido"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: #fff;
  padding: 4px 16px; border-radius: 50px; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
}
.plan-people {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold-light); font-size: 1.1rem; margin-bottom: 8px;
}
.plan-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; line-height: 1; color: #fff; font-weight: 600; }
.plan-num-sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.plan-price { margin: 28px 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
.plan-price-currency { font-size: 0.85rem; color: var(--gold-light); letter-spacing: 1.5px; }
.plan-price-amount { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: #fff; font-weight: 600; margin-top: 4px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  font-size: 0.85rem; color: rgba(255,255,255,0.85); padding: 6px 0;
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.plan-features li::before { content: "✦"; color: var(--gold-light); font-size: 0.8rem; }
.plan-cta {
  display: block; padding: 12px 0; background: transparent;
  border: 1px solid var(--gold-light); color: var(--gold-light); text-decoration: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; border-radius: 50px; transition: all 0.3s;
}
.plan-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.plan-card.featured .plan-cta { background: var(--gold); color: #fff; border-color: var(--gold); }
.plan-card.featured .plan-cta:hover { background: #fff; color: var(--mint-deep); border-color: #fff; }
.plans-note {
  text-align: center; margin-top: 50px; color: rgba(255,255,255,0.8);
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic;
  position: relative; z-index: 1;
}
.plans-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 4px; }
.plans-note a:hover { color: #fff; }

/* PDF link en cada plan-card */
.plan-pdf {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 10px 12px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.78); text-decoration: none;
  border-radius: 50px; transition: all 0.3s;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
}
.plan-pdf:hover {
  color: #fff; background: rgba(255,255,255,0.1);
  border-color: var(--gold-light);
}
.plan-pdf-icon {
  display: inline-block; padding: 3px 6px;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  background: var(--gold); color: #fff; border-radius: 3px;
  line-height: 1;
}

/* Catálogo completo de planes PDF (30-200) */
.plans-catalog {
  margin-top: 64px; position: relative; z-index: 1;
}
.plans-catalog-head {
  text-align: center; max-width: 640px; margin: 0 auto 32px;
}
.plans-catalog-head .section-eyebrow { color: var(--gold-light); }
.plans-catalog-head .section-eyebrow::before,
.plans-catalog-head .section-eyebrow::after { background: var(--gold-light); }
.plans-catalog-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff; margin: 14px 0 10px; font-weight: 500;
}
.plans-catalog-head p {
  color: rgba(255,255,255,0.78);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; line-height: 1.5;
}
.plans-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}
.plans-catalog-grid a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 18px 10px;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.plans-catalog-grid a:hover {
  transform: translateY(-3px);
  background: rgba(201,169,97,0.16);
  border-color: var(--gold-light);
  box-shadow: 0 12px 24px -14px rgba(0,0,0,0.4);
}
.plans-catalog-grid .pcg-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 600;
  color: #fff; line-height: 1;
}
.plans-catalog-grid a:hover .pcg-num { color: var(--gold-light); }
.plans-catalog-grid .pcg-lbl {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 600;
}
@media (max-width: 768px) {
  .plans-catalog { margin-top: 44px; }
  .plans-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .plans-catalog-grid a { padding: 14px 6px; }
  .plans-catalog-grid .pcg-num { font-size: 1.4rem; }
  .plan-pdf { margin-top: 12px; font-size: 10px; padding: 9px 10px; }
}

/* ===== SERVICIOS ADICIONALES ===== */
.services-extra { background: var(--cream); }
.extra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.extra-card {
  padding: 38px 36px; background: #fff;
  border: 1px solid var(--line); border-radius: 6px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.extra-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%;
  background: var(--mint); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s ease;
}
.extra-card:hover { transform: translateX(6px); box-shadow: 0 15px 40px rgba(61,36,24,0.1); border-color: var(--mint-soft); }
.extra-card:hover::before { transform: scaleY(1); }
.extra-icon {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.2rem; color: var(--mint-deep); margin-bottom: 8px; line-height: 1;
}
.extra-card h3 { font-size: 1.45rem; margin-bottom: 14px; color: var(--ink); }
.extra-card ul { list-style: none; }
.extra-card li {
  padding: 6px 0; color: var(--ink-soft); font-size: 0.93rem;
  display: flex; align-items: center; gap: 10px;
}
.extra-card li::before { content: "—"; color: var(--mint); font-weight: 700; }

/* ===== POR QUÉ ===== */
.why {
  background: var(--mint-bg);
  color: var(--ink); position: relative; overflow: hidden;
}
.why::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border: 1px solid var(--mint-soft); border-radius: 50%; opacity: 0.5;
}
.why::after {
  content: ""; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px;
  border: 1px solid var(--mint-soft); border-radius: 50%; opacity: 0.4;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.why-card { text-align: center; padding: 30px 20px; background: #fff; border-radius: 8px; transition: all 0.4s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,36,24,0.1); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 22px;
  background: var(--mint-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mint-deep); font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-style: italic; transition: all 0.4s ease;
}
.why-card:hover .why-icon { background: var(--mint); color: #fff; transform: scale(1.1) rotate(-5deg); }
.why-card h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 6px; margin-bottom: 14px;
  border: 1px solid var(--line); overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: var(--mint-soft); }
.faq-item.open { border-color: var(--mint); box-shadow: 0 10px 30px rgba(61,36,24,0.06); }
.faq-q {
  width: 100%; padding: 22px 28px; background: none; border: none;
  text-align: left; cursor: pointer; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--ink); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q::after {
  content: "+"; color: var(--mint-deep); font-size: 1.5rem;
  transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  color: var(--ink-soft); font-size: 0.97rem;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 28px 24px; }

/* ===== CONTACTO ===== */
.contact {
  background: linear-gradient(160deg, var(--mint-deep) 0%, #426e5d 100%);
  color: #fff; position: relative;
}
.contact .section-title { color: #fff; }
.contact .section-title .script { color: var(--gold-light); }
.contact .section-eyebrow { color: var(--gold-light); }
.contact .section-eyebrow::before, .contact .section-eyebrow::after { background: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { color: #fff; font-size: 1.6rem; margin-bottom: 24px; }
.contact-info > p { color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-detail-icon {
  width: 42px; height: 42px; border: 1px solid var(--gold-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); flex-shrink: 0; font-size: 1.1rem;
}
.contact-detail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.contact-detail-value { color: #fff; margin-top: 4px; text-decoration: none; display: block; }
.contact-detail-value:hover { color: var(--gold-light); }
.contact-socials { display: flex; gap: 14px; margin-top: 30px; }
.contact-socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); text-decoration: none; transition: all 0.3s;
  font-size: 0.85rem; font-weight: 600;
}
.contact-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 40px 36px; border-radius: 8px; backdrop-filter: blur(4px);
}
.contact-form h3 { color: #fff; margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-family: inherit; font-size: 0.95rem; border-radius: 4px;
  transition: all 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-light); background: rgba(255,255,255,0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select option { background: var(--mint-deep); color: #fff; }

/* ===== FOOTER (3 cols, light + dark band) ===== */
.footer {
  background: var(--cream); color: var(--ink-soft);
  padding: 80px 0 0; position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px; background: var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.1fr; gap: 60px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: var(--ink); font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 20px;
  position: relative; padding-bottom: 14px;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--gold);
}
.footer-col p { font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.93rem; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--mint-deep); padding-left: 4px; }
.footer-col a:hover::before { width: 14px; }
.footer-links a::before {
  content: ""; width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease; display: inline-block;
}

.footer-brand { display: flex; flex-direction: column; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.footer-logo img {
  height: 56px; width: auto; display: block;
}
.footer-logo-text { display: flex; flex-direction: column; border-left: 1px solid var(--gold); padding-left: 14px; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 16px; letter-spacing: 3px; color: var(--ink); font-weight: 500; line-height: 1; }
.footer-logo-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--mint-deep); margin-top: 4px; }

.footer-baen {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 20px; background: var(--ink); border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.footer-baen-label {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 500;
}
.footer-baen-name { font-family: 'Playfair Display', serif; color: #fff; font-size: 14px; }
.footer-baen img { height: 36px; opacity: 1; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
  font-size: 0.93rem;
}
.footer-contact-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: var(--mint-bg); color: var(--mint-deep);
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.footer-contact-item a { color: var(--ink); font-weight: 500; }
.footer-contact-item small { display: block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mint-deep); margin-bottom: 2px; font-weight: 600; }

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center;
  color: var(--mint-deep); transition: all 0.3s;
}
.footer-socials a:hover { background: var(--mint-deep); color: #fff; border-color: var(--mint-deep); transform: translateY(-2px); padding-left: 0; }
.footer-socials a::before { display: none; }
.footer-socials a:hover::before { width: 0; }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer-bottom {
  background: var(--ink); color: rgba(255,255,255,0.55);
  padding: 24px 0; font-size: 0.82rem;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

@media (max-width: 980px) {
  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; margin-bottom: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed; bottom: 26px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px; border-radius: 50px;
  text-decoration: none; color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; pointer-events: none; transform: translateY(24px);
}
.float-btn.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-btn-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-btn-icon svg { width: 18px; height: 18px; fill: #fff; }
.float-btn-label { white-space: nowrap; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.25); }

.float-wa {
  left: 26px; background: #25D366;
}
.float-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50px;
  border: 2px solid #25D366; opacity: 0.5;
  animation: ringPulse 2.2s ease infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

.float-phone {
  right: 26px;
  background: linear-gradient(135deg, var(--mint-deep), var(--mint));
}
.float-phone .float-btn-icon { background: rgba(255,255,255,0.2); }
.float-phone:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

@media (max-width: 580px) {
  .float-btn-label { display: none; }
  .float-btn { padding: 0; width: 56px; height: 56px; border-radius: 50%; justify-content: center; }
  .float-btn-icon { background: transparent; width: auto; height: auto; }
  .float-btn-icon svg { width: 24px; height: 24px; }
}

/* ===== SOCIAL SIDEBAR ===== */
.side-socials {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 998; display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  padding: 14px 9px;
  border-radius: 50px 0 0 50px;
  box-shadow: -10px 10px 30px rgba(61,36,24,0.15), -2px 0 0 var(--gold-light);
  border-left: none;
  animation: slideInRight 0.8s cubic-bezier(.16,1,.3,1) 0.6s both;
}
@keyframes slideInRight {
  from { transform: translateY(-50%) translateX(80px); opacity: 0; }
  to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

.side-socials::before {
  content: "Síguenos"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-90deg) translateY(-58px);
  transform-origin: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--mint-deep); font-size: 12px;
  letter-spacing: 3px; white-space: nowrap; opacity: 0.85;
}

.side-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--mint-deep);
  background: transparent;
  transition: all 0.35s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: visible;
}
.side-socials a svg {
  width: 17px; height: 17px; fill: currentColor;
  transition: transform 0.35s ease;
  position: relative; z-index: 1;
}
.side-socials a::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--mint-deep);
  transform: scale(0); transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}

/* Hover: cada red toma su color nativo */
.side-socials a[aria-label="Facebook"]::before { background: #1877F2; }
.side-socials a[aria-label="Instagram"]::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.side-socials a[aria-label="TikTok"]::before { background: #000; }

.side-socials a:hover { color: #fff; }
.side-socials a:hover::before { transform: scale(1); }
.side-socials a:hover svg { transform: scale(1.15); }

.side-socials a::after {
  content: attr(data-label);
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--ink); color: #fff; padding: 7px 14px; border-radius: 4px;
  font-size: 11px; letter-spacing: 1px; white-space: nowrap; font-weight: 500;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  text-transform: uppercase;
}
.side-socials a::after {
  border-top: 1px solid transparent;
}
.side-socials a:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Tablet y móvil: más compacto, centrado verticalmente */
@media (max-width: 980px) {
  .side-socials {
    top: 50%; transform: translateY(-50%);
    padding: 8px 6px; gap: 2px;
    box-shadow: -8px 8px 22px rgba(61,36,24,0.15), -2px 0 0 var(--gold-light);
  }
  .side-socials::before { display: none; }
  .side-socials a { width: 36px; height: 36px; }
  .side-socials a svg { width: 15px; height: 15px; }
  .side-socials a::after { display: none; }
}
@media (max-width: 580px) {
  .side-socials {
    padding: 6px 5px;
  }
  .side-socials a { width: 32px; height: 32px; }
  .side-socials a svg { width: 13px; height: 13px; }
}

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.12s); }

/* ===== RESPONSIVE ===== */
/* ===== MOBILE DRAWER — fondo turquesa oscuro, identidad Cattleya ===== */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px;
  height: 100dvh;
  background: linear-gradient(160deg, #1F3530 0%, #1F8E84 100%);
  color: #fff;
  z-index: 1002;
  padding: 90px 32px 40px; display: flex; flex-direction: column;
  gap: 4px; box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  transition: right 0.45s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(224,185,115,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.mobile-drawer > * { position: relative; z-index: 1; }
.mobile-drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.3s ease; z-index: 2;
}
.drawer-close:hover { background: var(--brand-gold); color: #1F3530; border-color: var(--brand-gold); transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-logo {
  position: absolute; top: 24px; left: 32px;
  height: 44px; width: auto;
}
.mobile-drawer a {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-drawer a::after {
  content: "→";
  color: var(--brand-gold);
  opacity: 0.7;
  transition: all 0.3s;
  font-family: sans-serif;
  font-size: 0.95em;
}
.mobile-drawer a:hover, .mobile-drawer a:focus { color: var(--brand-gold); padding-left: 6px; }
.mobile-drawer a:hover::after, .mobile-drawer a:focus::after { opacity: 1; transform: translateX(4px); }

.drawer-footer {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.drawer-footer-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.drawer-contact { display: flex; flex-direction: column; gap: 8px; }
.drawer-contact a {
  font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  padding: 8px 0; border: none;
  color: rgba(255,255,255,0.85);
}
.drawer-contact a:hover { color: var(--brand-gold); }
.drawer-contact a::after { display: none; }
.drawer-socials { display: flex; gap: 10px; margin-top: 16px; }
.drawer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; padding: 0;
}
.drawer-socials a:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #1F3530;
  padding-left: 0;
}
.drawer-socials a::after { display: none; }
.drawer-socials svg { width: 14px; height: 14px; fill: currentColor; }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(61,36,24,0.55);
  backdrop-filter: blur(2px);
  z-index: 1000; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  /* TOPBAR: compacta, solo lo esencial */
  .topbar { font-size: 10.5px; padding: 7px 0; letter-spacing: 0.5px; }
  .topbar-inner {
    justify-content: center; gap: 12px;
  }
  .topbar-tagline { font-size: 12px; }
  .topbar-left { display: none; }
  .topbar-right { gap: 12px; }
  .topbar-icon svg { width: 10px; height: 10px; }

  /* NAV: solo brand + hamburger */
  .nav { padding: 14px 0; }
  .nav-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .nav-menu, .nav-actions { display: none !important; }
  .menu-toggle { display: flex !important; }
  .nav-brand { justify-self: start; gap: 12px; }
  .nav-brand img { height: 48px; }
  .nav.scrolled .nav-brand img { height: 42px; }
  .nav-brand-text { padding-left: 12px; }
  .nav-brand-name { font-size: 14px; letter-spacing: 3px; }
  .nav-brand-tagline { font-size: 11px; }

  /* Layout: grids → 1 columna */
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { aspect-ratio: 16/10; }
  .extra-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ========== SWIPE LATERAL EN SECCIONES ========== */
  .services-grid,
  .plans-grid,
  .why-grid,
  .extra-grid {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 28px;
    gap: 16px;
    grid-template-columns: none;
    padding: 8px 28px 30px;
    margin-left: -28px;
    margin-right: -28px;
    width: calc(100% + 56px);
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar,
  .plans-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .extra-grid::-webkit-scrollbar { display: none; }

  .service-card,
  .plan-card,
  .why-card,
  .extra-card {
    flex: 0 0 calc(100vw - 80px);
    min-width: calc(100vw - 80px);
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .extra-card {
    flex-basis: calc(100vw - 60px);
    min-width: calc(100vw - 60px);
  }

  /* Hint visual: pequeñas pistas de swipe en cada section con carrusel */
  .section-head + .services-grid::before,
  .section-head + .plans-grid::before,
  .section-head + .extra-grid::before,
  .section-head + .why-grid::before { content: none; }
}
/* Hint flotante único — solo en móvil */
.floating-swipe-hint { display: none !important; }
.swipe-hint, .swipe-hint-wrap, .hero-swipe-hint { display: none !important; }
@media (max-width: 980px) {
  .floating-swipe-hint {
    display: inline-flex !important;
    position: fixed; left: 50%; top: 96px;
    transform: translateX(-50%) translateY(-20px);
    z-index: 999;
    align-items: center; gap: 12px;
    padding: 13px 26px; border-radius: 50px;
    background: linear-gradient(135deg, rgba(90,153,133,0.95), rgba(66,110,93,0.95));
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,181,112,0.6);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: #fff; font-size: 1.1rem; letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 2px 0 var(--gold-light);
    transition: opacity 0.55s cubic-bezier(.16,1,.3,1), transform 0.55s cubic-bezier(.16,1,.3,1);
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
  }
  .floating-swipe-hint.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    animation: hintBounce 2.5s ease-in-out 0.7s infinite;
  }
  @keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
  }
  .floating-swipe-hint .hint-chevrons {
    display: inline-flex; gap: 1px; align-items: center;
  }
  .floating-swipe-hint svg.chev {
    width: 18px; height: 18px;
    color: var(--gold-light);
    opacity: 0;
    animation: chevWave 1.4s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(212,181,112,0.6));
  }
  .floating-swipe-hint svg.chev:nth-child(1) { animation-delay: 0s; }
  .floating-swipe-hint svg.chev:nth-child(2) { animation-delay: 0.15s; margin-left: -10px; }
  .floating-swipe-hint svg.chev:nth-child(3) { animation-delay: 0.3s; margin-left: -10px; }
  @keyframes chevWave {
    0%, 100% { opacity: 0; transform: translateX(-3px); }
    50% { opacity: 1; transform: translateX(3px); }
  }
  .swipe-hint::before {
    content: ""; position: absolute; left: -40%; top: 0; bottom: 0; width: 30%;
    background: linear-gradient(90deg, transparent, rgba(216,138,110,0.18), transparent);
    animation: swipeShine 2.6s ease-in-out infinite;
  }
  @keyframes swipeShine {
    0% { left: -40%; }
    100% { left: 110%; }
  }
  .swipe-hint-icon {
    position: relative; width: 28px; height: 18px;
    display: inline-flex; align-items: center;
  }
  .swipe-hint-icon svg.hand {
    width: 18px; height: 18px; color: var(--mint-deep);
    animation: swipeHand 2.2s ease-in-out infinite;
    transform-origin: center;
  }
  .swipe-hint-icon svg.arrow {
    width: 14px; height: 14px; color: var(--gold-dark);
    margin-left: 4px;
    animation: swipeArrow 2.2s ease-in-out infinite;
  }
  @keyframes swipeHand {
    0%, 100% { transform: translateX(-3px) rotate(-8deg); }
    50% { transform: translateX(6px) rotate(8deg); }
  }
  @keyframes swipeArrow {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(6px); opacity: 1; }
  }
  .swipe-hint-dots {
    display: inline-flex; gap: 4px; margin-left: 4px;
  }
  .swipe-hint-dots span {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
    animation: swipeDot 1.6s ease-in-out infinite;
  }
  .swipe-hint-dots span:nth-child(2) { animation-delay: 0.2s; }
  .swipe-hint-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes swipeDot {
    0%, 60%, 100% { opacity: 0.3; transform: translateX(0); }
    30% { opacity: 1; transform: translateX(4px); }
  }
}
@media (max-width: 580px) {
  section { padding: 80px 0; }
  .hero { padding: 130px 20px 90px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .services-grid, .plans-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 14px; }
  .stat { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
  .stat-label { margin-top: 0; }
  .contact-form { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ===================== INNER PAGES (page.php) ===================== */
.page-inner .hero.page-hero { min-height: 56vh; padding: 120px 0 80px; }
.page-inner .page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.page-inner .page-hero .hero-sub { font-size: clamp(1.05rem, 1.3vw, 1.2rem); margin: 24px 0 32px; max-width: 600px; }
.page-inner .page-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.page-inner .page-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.page-inner .page-breadcrumb a:hover { color: #fff; }
.page-inner .page-breadcrumb span { color: var(--brand-gold); }
/* ===== PDF FEATURE (Carta menú destacada) ===== */
.pdf-feature {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 32px; align-items: center;
  max-width: 920px; margin: 0 auto 48px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--mint);
  border-radius: 10px;
  box-shadow: 0 14px 30px -22px rgba(31,142,132,0.45);
  position: relative; overflow: hidden;
}
.pdf-feature::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 65%);
  pointer-events: none;
}
.pdf-feature-thumb {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  background: linear-gradient(160deg, rgba(31,142,132,0.06), rgba(201,169,97,0.08));
  border-radius: 8px;
}
.pdf-feature-thumb svg { width: 100%; height: auto; max-width: 130px; display: block; filter: drop-shadow(0 8px 18px rgba(31,142,132,0.18)); }
.pdf-feature-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  padding: 4px 8px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; border-radius: 4px;
}
.pdf-feature-body { position: relative; z-index: 1; }
.pdf-feature-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 10px;
}
.pdf-feature h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--mint-deep); margin: 0 0 12px;
  font-weight: 600; line-height: 1.25;
}
.pdf-feature p {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft); margin: 0 0 20px;
}
.pdf-feature-actions {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.pdf-feature-secondary {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mint-deep); font-weight: 600; text-decoration: none;
}
.pdf-feature-secondary:hover { color: var(--gold); }
@media (max-width: 720px) {
  .pdf-feature {
    grid-template-columns: 1fr; gap: 20px;
    padding: 24px 22px; margin-bottom: 36px;
  }
  .pdf-feature-thumb { max-width: 140px; margin: 0 auto; }
  .pdf-feature-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .pdf-feature-actions .btn { text-align: center; }
  .pdf-feature-secondary { text-align: center; }
}

.page-body { padding: 80px 0; background: var(--cream); }
.page-body .container { max-width: 820px; }
.page-body h2 { font-family: 'Playfair Display', serif; color: var(--mint-deep); font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 600; margin: 48px 0 20px; line-height: 1.2; }
.page-body h3 { font-family: 'Playfair Display', serif; color: var(--ink); font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 600; margin: 32px 0 14px; }
.page-body p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.page-body ul { margin: 18px 0 24px 24px; }
.page-body li { margin-bottom: 10px; color: var(--ink-soft); }
.page-body strong { color: var(--ink); }
.page-cta-band { background: linear-gradient(135deg, var(--mint-deep), var(--mint)); padding: 70px 0; color: #fff; text-align: center; }
.page-cta-band h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; font-weight: 500; }
.page-cta-band p { color: rgba(255,255,255,0.92); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.1rem, 1.4vw, 1.3rem); margin-bottom: 32px; }
.page-cta-band .btn { background: #fff; color: var(--mint-deep); border: 1px solid rgba(224,185,115,0.4); padding: 16px 36px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; display: inline-block; margin: 6px; transition: transform 0.3s; }
.page-cta-band .btn:hover { transform: translateY(-2px); }
.page-cta-band .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.32); }
.page-related { background: var(--cream-dark); padding: 70px 0; }
.page-related h2 { font-family: 'Playfair Display', serif; color: var(--mint-deep); font-size: clamp(1.6rem, 2.4vw, 2.2rem); text-align: center; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.related-card { background: #fff; padding: 22px; border-radius: 16px; text-decoration: none; color: var(--ink); border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-card .related-tag { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-gold-deep); margin-bottom: 8px; }
.related-card .related-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.35; color: var(--ink); }
@media (max-width: 768px) {
  .page-inner .hero.page-hero { min-height: 48vh; padding: 100px 0 60px; }
  .page-body { padding: 56px 0; }
}

/* ===================== BLOG INDEX ===================== */
.blog-list-section { background: var(--cream); padding: 80px 0 100px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 24px -10px rgba(31,53,48,0.12);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(31,53,48,0.22);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--mint-pale);
}
.blog-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 600;
}
.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.blog-card-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-deep);
  font-weight: 600;
}

/* ===================== FOOTER DIRECTORY (categorías) ===================== */
.footer-directory {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.footer-dir-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brand-gold);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: 0.3px;
}
.footer-dir-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-dir-col li {
  margin: 0 0 9px;
  line-height: 1.4;
}
.footer-dir-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.25s;
  display: block;
}
.footer-dir-col a:hover { color: var(--brand-gold); }
@media (max-width: 640px) {
  .footer-directory { padding: 48px 0 32px; }
  .footer-directory-grid { gap: 24px; }
}

/* ===================== SERVICIOS INDEX (mapa) ===================== */
.servicios-index { background: var(--cream); padding: 80px 0 100px; }
.srv-cat { margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.srv-cat:last-child { border-bottom: none; }
.srv-cat h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mint-deep);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 22px;
  font-weight: 600;
}
.srv-cat-count {
  color: var(--brand-gold-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  margin-left: 8px;
}
.srv-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 20px;
}
.srv-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  padding: 8px 0;
  line-height: 1.45;
  transition: color 0.2s, padding-left 0.2s;
  border-bottom: 1px solid transparent;
}
.srv-list a:hover {
  color: var(--mint-deep);
  padding-left: 4px;
}

/* ===================== HOME EXPLORA ===================== */
.home-explora {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.home-explora-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.home-explora-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mint-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 18px;
  font-weight: 600;
  line-height: 1.15;
}
.home-explora-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.55;
}
.home-explora-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.explora-cat {
  background: #fff;
  padding: 28px 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 22px -12px rgba(31,53,48,0.10);
}
.explora-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(31,53,48,0.18);
}
.explora-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.explora-cat-head h3 {
  font-family: 'Playfair Display', serif;
  color: var(--mint-deep);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.explora-cat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  font-weight: 600;
}
.explora-cat ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.explora-cat li {
  margin: 0;
  line-height: 1.4;
}
.explora-cat li a {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(31,142,132,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.explora-cat li:last-child a { border-bottom: none; }
.explora-cat li a:hover {
  color: var(--mint-deep);
  padding-left: 4px;
}
.explora-cat-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}
.explora-cat-all:hover { color: var(--mint-deep); }
.home-explora-footer {
  text-align: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-explora {
  background: var(--mint-deep);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, background 0.3s;
}
.btn-explora:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.btn-explora-ghost {
  background: transparent;
  color: var(--mint-deep);
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid var(--mint-deep);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-explora-ghost:hover {
  background: var(--mint-deep);
  color: #fff;
}

/* ===================== PAGE BODY: features + FAQs ===================== */
.page-section-h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mint-deep);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  margin: 56px 0 22px;
  line-height: 1.2;
}
.page-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 28px;
}
.page-features li {
  padding: 14px 18px 14px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
  margin: 0;
}
.page-features li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-faqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.page-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.page-faq[open] { box-shadow: 0 8px 22px -12px rgba(31,53,48,0.18); }
.page-faq summary {
  padding: 18px 56px 18px 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.35;
  user-select: none;
}
.page-faq summary::-webkit-details-marker { display: none; }
.page-faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--brand-gold-deep);
  transition: transform 0.25s;
  line-height: 1;
}
.page-faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.page-faq p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Cotizador section: contenedor más ancho para que el widget respire */
.cotizador-section .container.container-wide { max-width: 1200px !important; }
.cotizador-section { padding: 60px 0 80px !important; }

/* Drawer: separadores de sección y enlaces destacados (cotizadores) — tema oscuro */
.mobile-drawer .drawer-section {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 22px 0 6px;
  font-weight: 700;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-drawer a.drawer-highlight {
  color: #fff;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 14px;
  border-radius: 10px;
  margin: 4px 0;
}
.mobile-drawer a.drawer-highlight:hover {
  background: rgba(224,185,115,0.18);
  border-color: rgba(224,185,115,0.45);
  color: var(--brand-gold);
}
.mobile-drawer a.drawer-highlight::after { color: var(--brand-gold); opacity: 0.85; }

/* ===================== HOME BLOG PREVIEW ===================== */
.home-blog {
  padding: 90px 0;
  background: var(--cream);
}
.home-blog-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.home-blog-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--mint-deep);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 18px;
  font-weight: 600;
  line-height: 1.15;
}
.home-blog-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.55;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.home-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 24px -10px rgba(31,53,48,0.10);
}
.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(31,53,48,0.22);
}
.home-blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--mint-pale);
}
.home-blog-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.home-blog-card-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.home-blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 600;
}
.home-blog-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex: 1;
}
.home-blog-card-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-deep);
  font-weight: 600;
}
.home-blog-footer {
  text-align: center;
}

/* ===================== BLOG ARTICLE (post real) ===================== */
.page-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.blog-article h2.page-section-h2 { margin: 44px 0 14px; }
.blog-article h3.page-section-h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.blog-article p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-article p strong { color: var(--ink); }
.blog-article p a { color: var(--mint-deep); text-decoration: underline; text-underline-offset: 3px; }
.blog-article ul.article-list,
.blog-article ol.article-list {
  margin: 16px 0 24px;
  padding-left: 26px;
}
.blog-article ul.article-list li,
.blog-article ol.article-list li {
  margin-bottom: 9px;
  line-height: 1.6;
  font-size: 16.5px;
  color: var(--ink-soft);
}
.blog-article ul.article-list li::marker { color: var(--brand-gold-deep); }


/* ============================================================================
   /v2/planes-todo-incluido/ — rediseño completo
   ============================================================================ */

/* H1 con script — usar el mismo patrón del home */
.page-hero .h1-script {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand-gold, #E0B973);
  font-size: 0.78em;
  margin-top: -4px;
  letter-spacing: 0.5px;
}

/* ============ Sección "Qué incluye" — fondo cream, iconos dorados ============ */
.planes-incluye {
  background: var(--cream);
  padding: 96px 0 80px;
  position: relative;
}
.planes-incluye::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold, #E0B973), transparent);
}
.planes-incluye .section-head { margin-bottom: 60px; }

.incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.incluye-item {
  background: #fff;
  border: 1px solid rgba(31,53,48,0.08);
  border-radius: 4px;
  padding: 40px 28px 34px;
  text-align: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.incluye-item::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-gold, #E0B973);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.incluye-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -28px rgba(31,53,48,0.22);
  border-color: rgba(224,185,115,0.5);
}
.incluye-item:hover::before { width: 60%; }

.incluye-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(244,216,156,0.32), rgba(224,185,115,0.18));
  border: 1px solid rgba(224,185,115,0.45);
  border-radius: 50%;
  color: var(--brand-gold-deep, #B68A4A);
  transition: background 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.incluye-icon svg { width: 36px; height: 36px; }
.incluye-item:hover .incluye-icon {
  background: linear-gradient(140deg, rgba(244,216,156,0.55), rgba(224,185,115,0.35));
  transform: scale(1.06) rotate(-3deg);
}

.incluye-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
}
.incluye-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

/* ============ Sección "Planes más solicitados" — hereda .plans (oscuro) y añade badge ============ */
.planes-destacados {
  padding: 100px 0 110px;
  scroll-margin-top: 80px;
}
.planes-destacados .plans-grid { max-width: 1180px; margin: 0 auto; }
.plan-card { position: relative; }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-gold, #E0B973), var(--brand-gold-deep, #B68A4A));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 22px -8px rgba(182,138,74,0.6);
  z-index: 2;
}

/* ============ Sección tabla de tarifas ============ */
.planes-tabla {
  background: var(--cream);
  padding: 96px 0 90px;
  position: relative;
}
.planes-tabla::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold, #E0B973), transparent);
}
.tabla-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(31,53,48,0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px -42px rgba(31,53,48,0.28);
}
.tabla-tarifas {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
}
.tabla-tarifas thead th {
  background: linear-gradient(135deg, var(--mint-deep) 0%, #2a6f66 100%);
  color: #fff;
  text-align: left;
  padding: 18px 26px;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabla-tarifas thead th.col-action { text-align: right; }
.tabla-tarifas tbody td {
  padding: 18px 26px;
  border-top: 1px solid rgba(31,53,48,0.06);
  font-size: 15px;
  color: var(--ink);
  vertical-align: middle;
}
.tabla-tarifas tbody tr { transition: background 0.25s ease; }
.tabla-tarifas tbody tr:hover { background: rgba(244,216,156,0.10); }
.tabla-tarifas tbody tr.is-highlight {
  background: linear-gradient(90deg, rgba(244,216,156,0.22), rgba(244,216,156,0.04));
}
.tabla-tarifas tbody tr.is-highlight:hover { background: linear-gradient(90deg, rgba(244,216,156,0.32), rgba(244,216,156,0.08)); }

.cap-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--mint-deep);
  font-weight: 600;
  margin-right: 10px;
  vertical-align: middle;
}
.cap-lbl {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  vertical-align: middle;
}
.cap-tag {
  display: inline-block;
  margin-left: 12px;
  background: linear-gradient(135deg, var(--brand-gold, #E0B973), var(--brand-gold-deep, #B68A4A));
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  vertical-align: middle;
}
.cap-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}
.cap-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--brand-gold-deep, #B68A4A);
  margin-right: 6px;
  vertical-align: 2px;
}
.col-action { text-align: right; }
.tabla-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-deep);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(31,142,132,0.25);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.tabla-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.tabla-link:hover {
  background: var(--mint-deep);
  color: #fff;
  border-color: var(--mint-deep);
}
.tabla-link:hover svg { transform: translateY(2px); }

.tabla-note {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.tabla-note a {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mint-deep);
  text-decoration: none;
  margin-left: 6px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.tabla-note a:hover { color: var(--brand-gold-deep, #B68A4A); }

/* ============ FAQ ============ */
.planes-faq-section {
  background: var(--cream-dark, #F2EFE8);
  padding: 96px 0 96px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: #fff;
  border: 1px solid rgba(31,53,48,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.faq-list details[open] {
  border-color: rgba(224,185,115,0.55);
  box-shadow: 0 22px 44px -32px rgba(31,53,48,0.28);
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 64px 22px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 14px; height: 14px;
  background: linear-gradient(90deg, var(--brand-gold-deep, #B68A4A), var(--brand-gold-deep, #B68A4A)) center/14px 1.5px no-repeat,
              linear-gradient(0deg, var(--brand-gold-deep, #B68A4A), var(--brand-gold-deep, #B68A4A)) center/1.5px 14px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.faq-list details[open] summary::after {
  background: linear-gradient(90deg, var(--brand-gold-deep, #B68A4A), var(--brand-gold-deep, #B68A4A)) center/14px 1.5px no-repeat;
  transform: translateY(-50%) rotate(180deg);
}
.faq-list details[open] summary { color: var(--mint-deep); }
.faq-body {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(31,53,48,0.05);
  margin-top: 4px;
  padding-top: 18px;
}
.faq-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.faq-body p a {
  color: var(--mint-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .incluye-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .planes-incluye { padding: 72px 0 60px; }
  .planes-destacados { padding: 76px 0 84px; }
  .planes-tabla { padding: 72px 0 70px; }
  .planes-faq-section { padding: 72px 0; }

  .incluye-grid { grid-template-columns: 1fr; gap: 16px; max-width: 460px; }
  .incluye-item { padding: 30px 24px 28px; }
  .incluye-icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .incluye-icon svg { width: 30px; height: 30px; }
  .incluye-item h3 { font-size: 1.12rem; }
  .incluye-item p { font-size: 14px; }

  .plan-badge { font-size: 9px; padding: 6px 12px; letter-spacing: 1.4px; top: -12px; }

  .tabla-wrap {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
  }
  .tabla-tarifas thead { display: none; }
  .tabla-tarifas, .tabla-tarifas tbody, .tabla-tarifas tr { display: block; width: 100%; }
  .tabla-tarifas tr {
    padding: 18px 20px;
    border-top: 1px solid rgba(31,53,48,0.08);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    align-items: center;
  }
  .tabla-tarifas td { display: block; padding: 0; border: none; }
  .tabla-tarifas td:first-child { grid-column: 1; grid-row: 1; }
  .tabla-tarifas td.cap-price { grid-column: 2; grid-row: 1; text-align: right; }
  .tabla-tarifas td.col-action { grid-column: 1 / -1; grid-row: 2; margin-top: 6px; }
  .tabla-link { width: 100%; justify-content: center; padding: 11px 18px; }
  .cap-num { font-size: 1.35rem; }
  .cap-tag { margin-left: 8px; font-size: 9px; padding: 3px 8px; }

  .faq-list summary { padding: 18px 52px 18px 22px; font-size: 1rem; }
  .faq-list summary::after { right: 22px; width: 12px; height: 12px; }
  .faq-body { padding: 0 22px 20px; padding-top: 16px; }
  .faq-body p { font-size: 14.5px; }

  .tabla-note { font-size: 1rem; }
  .tabla-note a { display: block; margin: 8px auto 0; }
}

/* CTA central de planes en el home */
.plans-home-cta {
  text-align: center;
  margin: 56px auto 0;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.plans-home-cta .btn-primary {
  padding: 18px 42px;
}
.plans-home-cta-note {
  margin: 18px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .plans-home-cta { margin-top: 36px; }
  .plans-home-cta .btn-primary { width: 100%; justify-content: center; }
}

/* ============ /bodas/ — grid de zonas de cobertura ============ */
.zonas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.zona-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: left;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s ease, background 0.45s ease;
}
.zona-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light, var(--brand-gold));
}
.zona-card h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  position: relative;
  padding-bottom: 12px;
}
.zona-card h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--brand-gold);
}
.zona-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
@media (max-width: 980px) {
  .zonas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .zonas-grid { grid-template-columns: 1fr; gap: 12px; }
  .zona-card { padding: 22px 20px; }
}

/* ============ /15-anos/ — chips de tema ============ */
.planes-temas { background: var(--cream); }
.temas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.tema-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid rgba(31,53,48,0.1);
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mint-deep);
  transition: all 0.35s ease;
  cursor: default;
}
.tema-pill:hover {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-deep));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(182,138,74,0.6);
}
@media (max-width: 560px) {
  .tema-pill { padding: 10px 18px; font-size: 1rem; }
}

/* ============ Home — sección Catering ============ */
.catering-home {
  background: var(--cream-dark, #F2EFE8);
  padding: 100px 0;
  position: relative;
}
.catering-home::before, .catering-home::after {
  content: ""; position: absolute; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
}
.catering-home::before { top: 0; }
.catering-home::after { bottom: 0; }

.catering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.catering-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(31,53,48,0.08);
  border-radius: 6px;
  padding: 36px 28px 30px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.catering-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-deep));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.catering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -32px rgba(31,53,48,0.28);
  border-color: rgba(224,185,115,0.55);
}
.catering-card:hover::before { transform: scaleX(1); }

.catering-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, rgba(244,216,156,0.32), rgba(224,185,115,0.18));
  border: 1px solid rgba(224,185,115,0.45);
  border-radius: 50%;
  color: var(--brand-gold-deep, #B68A4A);
  margin-bottom: 22px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.catering-icon svg { width: 32px; height: 32px; }
.catering-card:hover .catering-icon {
  transform: scale(1.08) rotate(-4deg);
}

.catering-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--mint-deep);
  font-weight: 600;
  margin: 0 0 10px;
}
.catering-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.catering-link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  transition: transform 0.3s ease, color 0.3s ease;
}
.catering-card:hover .catering-link { color: var(--mint-deep); transform: translateX(4px); }

@media (max-width: 880px) {
  .catering-grid { grid-template-columns: 1fr; gap: 16px; max-width: 540px; }
  .catering-home { padding: 70px 0; }
  .catering-card { padding: 28px 24px 24px; }
}
