/* ================================================================
   SOM OHANA VIATGES — stylesheet profesional
   Secciones: Reset · Tokens · Base · Layout · Navbar · Hero ·
   Trust · Destinos · Ofertas · Cruceros · Cómo · Servicios ·
   Galería · Luna de miel · Nosotros · Testimonios · FAQ ·
   Contacto · Newsletter · Footer · FABs · Cookie · Cursor ·
   Progress · Preloader · Accesibilidad · Print · Reduced-motion
================================================================ */

/* ----------------------------------------------------------------
   1. RESET
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ----------------------------------------------------------------
   2. DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* Colors */
  --navy:      #0d1b2a;
  --navy-2:    #152944;
  --gold:      #bf8f32;
  --gold-l:    #d4aa55;
  --gold-d:    #9a7022;
  --cream:     #faf7f2;
  --cream-d:   #ede8de;
  --coral:     #d45c32;
  --wa-green:  #25d366;
  --ig-grad:   linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  --white:     #ffffff;
  --text:      #1c1c2e;
  --text-mid:  #374151;
  --gray:      #6b7280;
  --gray-l:    #9ca3af;
  --border:    rgba(0,0,0,.08);
  --success:   #16a34a;
  --error:     #dc2626;

  /* Spacing */
  --sec-pad:  110px;
  --cont-w:   1240px;
  --gap:      24px;

  /* Radii */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  24px;
  --r-xl:  40px;

  /* Shadows */
  --sh:    0 4px 24px rgba(13,27,42,.09);
  --sh-m:  0 8px 40px rgba(13,27,42,.13);
  --sh-lg: 0 20px 60px rgba(13,27,42,.18);
  --sh-gold: 0 8px 30px rgba(191,143,50,.3);

  /* Transitions */
  --t:     .3s cubic-bezier(.4,0,.2,1);
  --t-lg:  .6s cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
---------------------------------------------------------------- */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
em { font-style: italic; color: var(--gold-d); }
strong { font-weight: 600; }
p { line-height: 1.75; }

/* ----------------------------------------------------------------
   4. UTILITIES
---------------------------------------------------------------- */
.container { max-width: var(--cont-w); margin: 0 auto; padding: 0 28px; }
.section   { padding: var(--sec-pad) 0; }
.sr-only   { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* Tags */
.tag {
  display: inline-block;
  background: rgba(191,143,50,.1);
  color: var(--gold-d);
  border: 1px solid rgba(191,143,50,.28);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag.light { background: rgba(255,255,255,.14); color: var(--gold-l); border-color: rgba(255,255,255,.25); }

/* Section header */
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p  { color: var(--gray); font-size: 1.05rem; }
.sec-head.light h2 { color: var(--white); }
.sec-head.light p  { color: rgba(255,255,255,.6); }

/* Buttons */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--sh-gold);
  letter-spacing: .02em;
}
.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(191,143,50,.45);
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
}
.btn-gold-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: .02em;
  cursor: pointer;
}
.btn-gold-sm:hover, .btn-gold-sm:focus-visible { transform: translateY(-1px); box-shadow: var(--sh-gold); }
.btn-white-outline {
  display: inline-block;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--t);
}
.btn-white-outline:hover, .btn-white-outline:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: linear-gradient(135deg, var(--gold-d), var(--gold-l));
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--t);
  box-shadow: 0 3px 14px rgba(191,143,50,.3);
}
.btn-nav:hover, .btn-nav:focus-visible { transform: translateY(-2px); box-shadow: var(--sh-gold); }

/* Focus ring */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Section CTA row */
.sec-cta-row { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; padding-top: 48px; border-top: 1px solid var(--border); margin-top: 48px; }
.sec-cta-row p { color: var(--gray); }
.sec-cta-row strong { color: var(--text); }

/* ----------------------------------------------------------------
   5. PRELOADER
---------------------------------------------------------------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-content { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pre-logo { width: 120px; height: 120px; animation: preFloat 2s ease-in-out infinite; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,.15)); }
@keyframes preFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.03); }
}
.pre-bar { width: 140px; height: 3px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.pre-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-d), var(--gold-l)); border-radius: 3px; animation: preLoad 1.8s ease forwards; }
@keyframes preLoad { to { width: 100%; } }
.pre-text { color: rgba(255,255,255,.45); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

/* ----------------------------------------------------------------
   6. CUSTOM CURSOR
---------------------------------------------------------------- */
.cursor, .cursor-follower { pointer-events: none; position: fixed; border-radius: 50%; z-index: 9998; transition: transform .15s ease; }
.cursor          { width: 8px; height: 8px; background: var(--gold); transform: translate(-50%,-50%); }
.cursor-follower { width: 36px; height: 36px; border: 1.5px solid rgba(191,143,50,.5); background: transparent; transform: translate(-50%,-50%); transition: left .12s ease, top .12s ease, width .3s ease, height .3s ease, border-color .3s ease; }
.cursor.hovering          { transform: translate(-50%,-50%) scale(2); background: var(--gold-l); }
.cursor-follower.hovering { width: 56px; height: 56px; border-color: var(--gold); }

/* ----------------------------------------------------------------
   7. SCROLL PROGRESS BAR
---------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  z-index: 9997;
  transition: width .1s linear;
}

/* ----------------------------------------------------------------
   8. SKIP NAV
---------------------------------------------------------------- */
.skip-nav {
  position: absolute; top: -999px; left: -999px;
  background: var(--gold); color: var(--white);
  padding: 12px 24px; border-radius: 0 0 var(--r) 0;
  font-weight: 600; z-index: 10000;
}
.skip-nav:focus { top: 0; left: 0; }

/* ----------------------------------------------------------------
   9. NAVBAR
---------------------------------------------------------------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s, padding .35s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(13,27,42,.08);
}
.nav-inner {
  max-width: var(--cont-w); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; }
.logo-img { width: 56px; height: 56px; object-fit: contain; transition: transform var(--t); filter: drop-shadow(0 2px 8px rgba(0,0,0,.2)); }
.logo:hover .logo-img { transform: scale(1.08) rotate(-2deg); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.88); font-weight: 500; font-size: .9rem; transition: color var(--t); position: relative; white-space: nowrap; }
#navbar.scrolled .nav-links a:not(.btn-nav):not(.nav-ig) { color: var(--text); }
.nav-links a:not(.btn-nav):not(.nav-ig)::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--gold); border-radius:2px; transition: width var(--t); }
.nav-links a:not(.btn-nav):not(.nav-ig):hover::after,
.nav-links a:not(.btn-nav):not(.nav-ig).active::after { width:100%; }
.nav-ig { display: flex; align-items: center; opacity: .75; transition: opacity var(--t); }
.nav-ig:hover { opacity: 1; }
#navbar.scrolled .nav-ig { color: var(--text); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition: var(--t); }
#navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   10. HERO
---------------------------------------------------------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; will-change: opacity; }
.hero-slide.active { opacity: 1; animation: kenBurns 8s ease-in-out forwards; }
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.55) 55%, rgba(13,27,42,.25) 100%); z-index: 1; }
.hero-body { position: relative; z-index: 2; padding: 160px 28px 80px; max-width: var(--cont-w); margin: 0 auto; width: 100%; }
.hero-label { display: inline-block; background: rgba(191,143,50,.2); border: 1px solid rgba(191,143,50,.4); color: var(--gold-l); padding: 6px 20px; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; animation: fadeUp .8s .1s both; }
.hero-body h1 { color: var(--white); max-width: 800px; margin-bottom: 24px; animation: fadeUp .8s .25s both; }
.hero-body h1 em { color: var(--gold-l); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 44px; line-height: 1.8; animation: fadeUp .8s .4s both; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .55s both; }
.hero-bottom { position: absolute; bottom: 40px; left: 0; right: 0; padding: 0 28px; max-width: var(--cont-w); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; z-index: 3; }
.hero-dots { display: flex; gap: 8px; }
.hdot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.45); background: transparent; transition: var(--t); padding: 0; }
.hdot.active { width: 28px; border-radius: 4px; background: var(--gold-l); border-color: var(--gold-l); }
.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.hscroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.7)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ----------------------------------------------------------------
   11. TRUST BAR
---------------------------------------------------------------- */
.trust-bar { background: var(--navy); }
.trust-inner { max-width: var(--cont-w); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: center; }
.trust-item { flex: 1; text-align: center; padding: 28px 16px; }
.trust-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-l); line-height: 1; margin-bottom: 5px; }
.trust-item span { font-size: .76rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ----------------------------------------------------------------
   12. DESTINOS
---------------------------------------------------------------- */
.sec-destinos { background: var(--cream); }
.destinos-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 320px 260px; gap: 16px; }
.dcard { position: relative; border-radius: var(--r-lg); overflow: hidden; display: block; box-shadow: var(--sh); transition: transform var(--t), box-shadow var(--t); }
.dcard:hover, .dcard:focus-visible { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.dcard-xl   { grid-column: 1 / 3; }
.dcard-wide { grid-column: 1 / 3; }
.dcard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dcard:hover .dcard-img { transform: scale(1.06); }
.dcard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.88) 0%, rgba(13,27,42,.15) 60%, transparent 100%); }
.dcard-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.dcard-region { display: inline-block; background: rgba(191,143,50,.85); color: var(--white); padding: 3px 12px; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.dcard-body h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 6px; }
.dcard-xl .dcard-body h3 { font-size: 2.6rem; }
.dcard-body p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.55; margin-bottom: 10px; max-width: 380px; }
.dcard-cta { color: var(--gold-l); font-size: .84rem; font-weight: 700; letter-spacing: .04em; display: inline-block; transition: letter-spacing var(--t); }
.dcard:hover .dcard-cta { letter-spacing: .1em; }
.dcard-dark { background: var(--navy-2); display: flex; align-items: center; justify-content: center; }
.dcard-more { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 28px; }
.dcard-more > span:first-child { font-size: 2.8rem; }
.dcard-dark h3 { color: var(--white); font-size: 1.4rem; }
.dcard-dark p { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ----------------------------------------------------------------
   13. OFERTAS
---------------------------------------------------------------- */
.sec-ofertas { background: var(--white); }
.urgency-bar { background: linear-gradient(135deg, rgba(212,92,50,.08), rgba(212,92,50,.04)); border: 1px solid rgba(212,92,50,.2); border-radius: var(--r); padding: 12px 20px; text-align: center; margin-bottom: 40px; font-size: .88rem; color: var(--text-mid); display: flex; align-items: center; justify-content: center; gap: 10px; }
.urgency-bar strong { color: var(--coral); }
.ofertas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ocard { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: var(--sh); display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.ocard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.ocard-featured { border: 2px solid var(--gold); box-shadow: 0 8px 40px rgba(191,143,50,.18); }
.ocard-img-wrap { position: relative; height: 190px; overflow: hidden; flex-shrink: 0; }
.ocard-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ocard:hover .ocard-img { transform: scale(1.05); }
.ocard-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: .7rem; font-weight: 700; z-index: 1; letter-spacing: .04em; }
.ocard-badge.hot  { background: linear-gradient(135deg, var(--coral), #e8834a); }
.ocard-badge.last { background: linear-gradient(135deg, var(--navy-2), #2a4a7a); }
.ocard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ocard-body h3 { font-size: 1.3rem; color: var(--text); }
.ocard-body > p { color: var(--gray); font-size: .875rem; line-height: 1.65; flex: 1; }
.ocard-feats { display: flex; flex-direction: column; gap: 4px; }
.ocard-feats li { font-size: .8rem; color: var(--gray); }
.ocard-price { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; gap: 8px; }
.price-block { display: flex; flex-direction: column; }
.price-from { font-size: .68rem; color: var(--gray-l); text-transform: uppercase; letter-spacing: .08em; }
.price-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-pp { font-size: .68rem; color: var(--gray); }

/* ----------------------------------------------------------------
   14. CRUCEROS
---------------------------------------------------------------- */
.sec-cruceros { position: relative; padding: var(--sec-pad) 0; overflow: hidden; }
.cruceros-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cruceros-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,27,42,.93) 40%, rgba(13,27,42,.65) 100%); }
.cruceros-body { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cruceros-text h2 { color: var(--white); font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin: 16px 0 20px; }
.cruceros-text h2 em { color: var(--gold-l); }
.cruceros-text p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 28px; }
.price-hero-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 36px; }
.price-hero-row .price-from { color: rgba(255,255,255,.55); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.price-hero { font-family: 'Cormorant Garamond', serif; font-size: 3.8rem; font-weight: 700; color: var(--gold-l); line-height: 1; }
.price-hero-row .price-pp { color: rgba(255,255,255,.5); }
.cruceros-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cruc-feat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 20px 18px; display: flex; align-items: center; gap: 14px; transition: background var(--t); }
.cruc-feat:hover { background: rgba(255,255,255,.14); }
.cruc-icon { font-size: 1.7rem; flex-shrink: 0; }
.cruc-feat strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 3px; }
.cruc-feat span { color: rgba(255,255,255,.55); font-size: .8rem; }

/* ----------------------------------------------------------------
   15. CÓMO TRABAJAMOS
---------------------------------------------------------------- */
.sec-como { background: var(--cream); }
.como-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; }
.como-step { text-align: center; padding: 0 20px; }
.como-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 700; color: rgba(191,143,50,.12); line-height: 1; margin-bottom: -16px; }
.como-icon { font-size: 2.6rem; margin-bottom: 16px; }
.como-step h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text); }
.como-step p { color: var(--gray); font-size: .9rem; line-height: 1.75; }
.como-connector { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-d), var(--gold-l)); border-radius: 2px; margin-top: 80px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   16. SERVICIOS
---------------------------------------------------------------- */
.sec-servicios { background: var(--white); }
.servicios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.scard { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px 32px; box-shadow: var(--sh); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.scard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(191,143,50,.3); }
.scard-icon { font-size: 2.4rem; margin-bottom: 20px; }
.scard h3 { margin-bottom: 12px; }
.scard p { color: var(--gray); font-size: .9rem; line-height: 1.75; }

/* ----------------------------------------------------------------
   17. GALERÍA
---------------------------------------------------------------- */
.sec-galeria { background: var(--cream); }
.galeria-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: 240px 240px; gap: 12px; }
.gitem { position: relative; overflow: hidden; border-radius: var(--r); margin: 0; box-shadow: var(--sh); transition: transform var(--t), box-shadow var(--t); }
.gitem:hover { transform: scale(1.01); box-shadow: var(--sh-lg); }
.gitem.g-tall { grid-row: span 2; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.gitem:hover img { transform: scale(1.06); }
.gitem-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(13,27,42,.8) 0%, transparent 100%); color: var(--white); padding: 24px 16px 16px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transform: translateY(100%); transition: transform .4s ease; }
.gitem:hover .gitem-caption { transform: translateY(0); }
.galeria-cta { text-align: center; margin-top: 40px; }
.btn-ig-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--ig-grad); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem; transition: var(--t); box-shadow: 0 4px 20px rgba(188,24,136,.3); }
.btn-ig-cta:hover, .btn-ig-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(188,24,136,.45); }

/* ----------------------------------------------------------------
   18. LUNA DE MIEL
---------------------------------------------------------------- */
.sec-lunamiel { background: var(--white); }
.lunamiel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lm-imgs { position: relative; height: 540px; }
.lm-main { position: absolute; top: 0; left: 0; width: 78%; height: 82%; border-radius: var(--r-lg); background-size: cover; background-position: center; box-shadow: var(--sh-lg); }
.lm-sec { position: absolute; bottom: 0; right: 0; width: 54%; height: 52%; border-radius: var(--r-lg); background-size: cover; background-position: center; box-shadow: var(--sh-lg); border: 6px solid var(--white); }
.lm-badge { position: absolute; top: 42%; left: -28px; transform: translateY(-50%); background: var(--navy); color: var(--white); padding: 20px 22px; border-radius: var(--r); text-align: center; box-shadow: 0 8px 28px rgba(13,27,42,.3); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lm-badge > span { font-size: 1.8rem; }
.lm-badge strong { font-size: .82rem; font-weight: 600; color: var(--gold-l); line-height: 1.4; }
.lm-text h2 { margin: 16px 0 22px; }
.lm-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.lm-puntos { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.lm-puntos li { display: flex; gap: 14px; align-items: flex-start; }
.lm-check { width: 26px; height: 26px; background: linear-gradient(135deg, var(--gold-d), var(--gold)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.lm-puntos strong { display: block; color: var(--text); font-size: .95rem; }
.lm-puntos span { color: var(--gray); font-size: .85rem; }

/* ----------------------------------------------------------------
   19. NOSOTROS
---------------------------------------------------------------- */
.sec-nosotros { background: var(--cream); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nos-text h2 { margin: 16px 0 22px; }
.nos-intro { font-size: 1.04rem; color: var(--text); font-weight: 500; line-height: 1.75; margin-bottom: 16px; }
.nos-text p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.nos-text p strong { color: var(--text); }
.nos-valores { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 28px 0 24px; }
.nos-valor strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.nos-valor span { font-size: .8rem; color: var(--gray); line-height: 1.5; }
.nos-social { margin-top: 16px; }
.nos-ig { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; color: var(--navy); transition: color var(--t); }
.nos-ig:hover, .nos-ig:focus-visible { color: var(--gold-d); }
.nos-img-wrap { position: relative; height: 520px; }
.nos-img { position: absolute; inset: 0; border-radius: var(--r-lg); background-size: cover; background-position: center; box-shadow: var(--sh-lg); }
.nos-float { position: absolute; bottom: -20px; left: -24px; background: var(--navy); padding: 22px 26px; border-radius: var(--r); box-shadow: 0 12px 40px rgba(13,27,42,.3); text-align: center; }
.nos-float strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold-l); line-height: 1; }
.nos-float span { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; display: block; line-height: 1.3; }

/* ----------------------------------------------------------------
   20. TESTIMONIOS
---------------------------------------------------------------- */
.sec-testi { background: var(--navy); padding: var(--sec-pad) 0; }
.testi-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.testi-header-row .sec-head { margin: 0; text-align: left; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 40px; padding: 10px 20px; color: var(--white); text-decoration: none; font-size: .85rem; font-weight: 500; white-space: nowrap; transition: background var(--t), transform var(--t); flex-shrink: 0; }
.google-badge:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 38px 32px; backdrop-filter: blur(4px); transition: background var(--t), transform var(--t); }
.tcard:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.tcard-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .1em; margin-bottom: 20px; }
.tcard > p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.82); line-height: 1.85; margin-bottom: 28px; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: var(--text); flex-shrink: 0; }
.tcard-author strong { display: block; color: var(--white); font-size: .95rem; font-style: normal; }
.tcard-author span { color: rgba(255,255,255,.45); font-size: .8rem; }

/* ----------------------------------------------------------------
   21. FAQ
---------------------------------------------------------------- */
.sec-faq { background: var(--cream); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-inner .sec-head { text-align: left; margin: 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-family: 'Inter', sans-serif; font-size: .97rem; font-weight: 600; color: var(--text); text-align: left; transition: color var(--t); }
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold-d); }
.faq-icon { width: 28px; height: 28px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 300; color: var(--gray); flex-shrink: 0; transition: var(--t); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); border-color: var(--gold-d); color: var(--gold-d); }
.faq-a { padding: 0 0 22px; }
.faq-a p { color: var(--gray); font-size: .9rem; line-height: 1.8; }

/* ----------------------------------------------------------------
   22. CONTACTO
---------------------------------------------------------------- */
.sec-contacto { background: var(--white); }
.contacto-grid { display: grid; grid-template-columns: 400px 1fr; gap: 52px; align-items: start; }
.cinfo-block { background: var(--cream); border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--border); margin-bottom: 18px; }
.cinfo-block h3 { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon { width: 38px; height: 38px; background: rgba(191,143,50,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.cinfo-item strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-l); margin-bottom: 4px; }
.cinfo-item span, .cinfo-item a { font-size: .93rem; color: var(--text); font-weight: 500; line-height: 1.5; }
.cinfo-item a:hover { color: var(--gold-d); }
.horarios .horarios-dl { display: flex; flex-direction: column; gap: 0; }
.h-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.h-row:last-of-type { border-bottom: none; }
.h-row dt { font-size: .88rem; color: var(--text); font-weight: 500; }
.h-row dd { font-size: .88rem; font-weight: 700; color: var(--navy); text-align: right; }
.h-row.cerrado dd { color: var(--error); }
.h-nota { margin-top: 14px; background: rgba(191,143,50,.08); border-radius: var(--r-sm); padding: 10px 14px; display: flex; gap: 8px; font-size: .82rem; color: var(--gray); }
.h-nota strong { color: var(--text); }
.wa-cta-btn { display: flex; align-items: center; gap: 12px; background: var(--wa-green); color: var(--white); padding: 14px 22px; border-radius: var(--r); font-weight: 700; font-size: .95rem; transition: var(--t); box-shadow: 0 4px 20px rgba(37,211,102,.3); margin-bottom: 18px; }
.wa-cta-btn:hover, .wa-cta-btn:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.mapa-wrap { border-radius: var(--r-lg); overflow: hidden; height: 200px; box-shadow: var(--sh); }
.mapa-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Form */
.cform-wrap { }
.cform { background: var(--cream); border-radius: var(--r-lg); padding: 44px; border: 1px solid var(--border); box-shadow: var(--sh); }
.cform h3 { font-size: 1.8rem; margin-bottom: 8px; }
.form-sub { color: var(--gray); font-size: .9rem; margin-bottom: 28px; }
.frow-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fgroup { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fgroup label { font-weight: 700; font-size: .78rem; color: var(--text); text-transform: uppercase; letter-spacing: .08em; }
.fgroup label span[aria-hidden] { color: var(--error); }
.fgroup input, .fgroup textarea, .fgroup select {
  background: var(--white); border: 2px solid transparent; border-radius: 10px;
  padding: 13px 16px; font-size: .95rem; font-family: 'Inter', sans-serif; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), background var(--t); outline: none; width: 100%;
}
.fgroup input:focus, .fgroup textarea:focus, .fgroup select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(191,143,50,.1); }
.fgroup input.error, .fgroup textarea.error { border-color: var(--error); }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: #b5bec8; }
.fgroup textarea { resize: vertical; min-height: 100px; }
.fgroup select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.fgroup-check { flex-direction: row; align-items: center; gap: 12px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--gray); cursor: pointer; font-weight: 400; text-transform: none; letter-spacing: 0; }
.check-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.check-label a { color: var(--gold-d); text-decoration: underline; }
.fgroup-error { font-size: .76rem; color: var(--error); min-height: 16px; }
.btn-submit { width: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); border: none; border-radius: 12px; padding: 16px; font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--t); box-shadow: 0 4px 20px rgba(13,27,42,.25); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover, .btn-submit:focus-visible { background: linear-gradient(135deg, var(--gold-d), var(--gold)); transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.btn-spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-legal { text-align: center; font-size: .76rem; color: var(--gray-l); margin-top: 12px; line-height: 1.6; }
.form-legal a { color: var(--gold-d); text-decoration: underline; }

/* ----------------------------------------------------------------
   23. NEWSLETTER
---------------------------------------------------------------- */
.sec-newsletter { background: var(--navy); padding: 80px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nl-text h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.nl-text h2 em { color: var(--gold-l); }
.nl-text p { color: rgba(255,255,255,.55); }
.nl-input-wrap { display: flex; gap: 12px; }
.nl-input-wrap input { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 50px; padding: 14px 22px; font-size: .95rem; font-family: 'Inter', sans-serif; color: var(--white); outline: none; transition: var(--t); }
.nl-input-wrap input::placeholder { color: rgba(255,255,255,.35); }
.nl-input-wrap input:focus { background: rgba(255,255,255,.12); border-color: var(--gold); }
.nl-legal { font-size: .76rem; color: rgba(255,255,255,.35); margin-top: 12px; }

/* ----------------------------------------------------------------
   24. FOOTER
---------------------------------------------------------------- */
footer { background: var(--text); }
.footer-top { padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: 48px; }
.f-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo-link { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo-img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 8px rgba(0,0,0,.15)); }
.flogo-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.flogo-sub { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.f-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.f-ig { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-l); font-size: .88rem; font-weight: 600; transition: color var(--t); }
.f-ig:hover, .f-ig:focus-visible { color: var(--white); }
.f-col h4 { font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.f-col ul { display: flex; flex-direction: column; gap: 11px; }
.f-col ul li a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color var(--t); }
.f-col ul li a:hover, .f-col ul li a:focus-visible { color: var(--white); }
.f-horarios { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.f-horarios > div { display: flex; justify-content: space-between; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.f-horarios dt { font-size: .8rem; color: rgba(255,255,255,.45); }
.f-horarios dd { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 500; text-align: right; }
.f-cerrado dd { color: #f87171 !important; }
.f-addr { color: rgba(255,255,255,.4); font-size: .82rem; line-height: 1.7; display: flex; gap: 8px; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.f-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.28); gap: 16px; }

/* ----------------------------------------------------------------
   25. FABS (WhatsApp + Instagram)
---------------------------------------------------------------- */
.fabs { position: fixed; bottom: 90px; right: 24px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--t); box-shadow: var(--sh-m); position: relative; }
.fab:hover, .fab:focus-visible { transform: translateY(-3px) scale(1.05); }
.fab-wa { background: var(--wa-green); box-shadow: 0 4px 20px rgba(37,211,102,.4); animation: waPulse 2.5s ease-in-out infinite; }
.fab-wa:hover { animation: none; box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.fab-ig { background: var(--ig-grad); box-shadow: 0 4px 20px rgba(188,24,136,.35); }
.fab-ig:hover { box-shadow: 0 8px 30px rgba(188,24,136,.5); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 28px rgba(37,211,102,.7),0 0 0 8px rgba(37,211,102,.15)} }
.fab-tooltip { position: absolute; right: 62px; background: var(--text); color: var(--white); padding: 5px 12px; border-radius: var(--r-sm); font-size: .78rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--t); }
.fab-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--text); }
.fab:hover .fab-tooltip, .fab:focus-visible .fab-tooltip { opacity: 1; }

/* ----------------------------------------------------------------
   26. SCROLL-TO-TOP
---------------------------------------------------------------- */
.scroll-top-btn { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--navy); color: var(--white); border: none; border-radius: 50%; font-size: 1.1rem; z-index: 800; transition: var(--t); opacity: 0; pointer-events: none; box-shadow: var(--sh); }
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover, .scroll-top-btn:focus-visible { background: var(--gold-d); transform: translateY(-3px); }

/* ----------------------------------------------------------------
   27. COOKIE CONSENT
---------------------------------------------------------------- */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text); border-top: 1px solid rgba(255,255,255,.08); z-index: 1100; padding: 20px 28px; }
.cookie-bar[hidden] { display: none; }
.cookie-inner { max-width: var(--cont-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text p { color: rgba(255,255,255,.65); font-size: .84rem; line-height: 1.5; }
.cookie-text p:first-child { margin-bottom: 4px; }
.cookie-text a { color: var(--gold-l); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-reject { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); padding: 10px 20px; border-radius: 50px; font-size: .84rem; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--t); }
.btn-cookie-reject:hover { background: rgba(255,255,255,.15); }
.btn-cookie-accept { background: linear-gradient(135deg, var(--gold-d), var(--gold)); color: var(--white); border: none; padding: 10px 24px; border-radius: 50px; font-size: .84rem; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--t); }
.btn-cookie-accept:hover { box-shadow: var(--sh-gold); }

/* ----------------------------------------------------------------
   27b. VIAJES GRUPALES
---------------------------------------------------------------- */
.sec-grupales { background: var(--cream); }

.grupales-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.gcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.gcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.gcard-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.gcard-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.gcard:hover .gcard-img { transform: scale(1.06); }
.gcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.55) 0%, transparent 60%);
}
.gcard-dest {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(191,143,50,.9);
  color: var(--white);
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}
.gcard-plazas {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  z-index: 2;
}

.gcard-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gcard-body h3 { font-size: 1.2rem; color: var(--text); }
.gcard-body > p { color: var(--gray); font-size: .87rem; line-height: 1.65; flex: 1; }

.gcard-info {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gcard-info li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray);
}
.gi-icon { font-size: .95rem; flex-shrink: 0; }

.gcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}
.gcard-price { display: flex; flex-direction: column; }
.gprice-from { font-size: .65rem; color: var(--gray-l); text-transform: uppercase; letter-spacing: .08em; }
.gprice-num  { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.gprice-pp   { font-size: .65rem; color: var(--gray); }

/* CTA grupal */
.grupales-cta { margin-top: 8px; }
.grupales-cta-inner {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.gcta-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
.gcta-icon { font-size: 2.6rem; flex-shrink: 0; margin-top: 4px; }
.gcta-text h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.gcta-text p  { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.75; }
.gcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-green);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  flex-shrink: 0;
}
.gcta-btn:hover, .gcta-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

/* Responsive grupales */
@media (max-width: 1100px) {
  .grupales-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grupales-grid { grid-template-columns: 1fr; }
  .grupales-cta-inner { padding: 28px 24px; flex-direction: column; gap: 28px; }
  .gcta-btn { width: 100%; justify-content: center; }
  .gcard-info { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   28. RESPONSIVE — 1100px
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .destinos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dcard-xl   { grid-column: 1 / 3; }
  .dcard-wide { grid-column: 1 / 3; }
  .ofertas-grid { grid-template-columns: 1fr 1fr; }
  .cruceros-body { grid-template-columns: 1fr; gap: 48px; }
  .cruceros-feats { grid-template-columns: 1fr 1fr; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .lunamiel-grid { grid-template-columns: 1fr; gap: 60px; }
  .lm-imgs { height: 420px; order: -1; }
  .lm-badge { left: 0; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 60px; }
  .nos-img-wrap { height: 400px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-header-row { flex-direction: column; align-items: flex-start; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner .sec-head { text-align: center; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: 1 / 3; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------------------------------------------------------------
   29. RESPONSIVE — 768px
---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --sec-pad: 72px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 10px 0 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 28px; color: var(--text) !important; font-size: .95rem; }
  .nav-links a::after { display: none; }
  .nav-ig { padding: 13px 28px; }
  .btn-nav { margin: 8px 28px 0; text-align: center; border-radius: 50px; color: var(--white) !important; }
  .hero-body { padding: 120px 20px 80px; }
  .hero-scroll-indicator { display: none; }
  .como-steps { grid-template-columns: 1fr; gap: 40px; }
  .como-connector { width: 2px; height: 40px; margin: 0 auto; }
  .destinos-grid { grid-template-columns: 1fr; }
  .dcard-xl, .dcard-wide { grid-column: 1; }
  .servicios-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gitem.g-tall { grid-row: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-header-row { gap: 16px; }
  .cform { padding: 28px 20px; }
  .frow-2 { grid-template-columns: 1fr; }
  .nos-valores { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-brand { grid-column: 1; }
  .f-bottom-inner { flex-direction: column; text-align: center; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { flex: 1 1 40%; }
  .trust-sep { display: none; }
  .fabs { bottom: 80px; right: 16px; }
  .scroll-top-btn { bottom: 16px; right: 16px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------------------------------------------
   30. RESPONSIVE — 480px
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-body h1 { font-size: 2.6rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .cruceros-feats { grid-template-columns: 1fr; }
  .nos-valores { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .nl-input-wrap { flex-direction: column; }
  .nl-input-wrap .btn-gold { text-align: center; }
  .mapa-wrap { height: 160px; }
  .cookie-btns { width: 100%; }
  .btn-cookie-reject, .btn-cookie-accept { flex: 1; text-align: center; }
}

/* ----------------------------------------------------------------
   31. PRINT STYLES
---------------------------------------------------------------- */
@media print {
  #navbar, .hero-scroll-indicator, .fabs, .scroll-top-btn, .cookie-bar,
  .cursor, .cursor-follower, .scroll-progress, #preloader { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-slides { display: none; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #555; }
  a[href^="#"]::after, a[href^="javascript"]::after { content: ''; }
  .section { padding: 24pt 0; break-inside: avoid; }
  h1,h2,h3 { break-after: avoid; }
}

/* ----------------------------------------------------------------
   32. REDUCED MOTION
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero-slide.active { animation: none; }
  .cursor, .cursor-follower { display: none; }
  .fab-wa { animation: none; }
  .pre-logo { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
