/* ================================================================
   COSTA NORTE x LIS ALONSO | LANDING PAGE
   Estética: Cyber-Luxury · Negro · Blanco · Rosa #FA83CB
   ================================================================ */

/* ── VARIABLES (heredadas de la marca) ──────────────────────── */
:root {
  --pink:        #FA83CB;
  --pink-light:  #FDB8E4;
  --pink-dark:   #D9609E;
  --black:       #0A0A0A;
  --black-2:     #111118;
  --black-3:     #1A1A24;
  --white:       #FFFFFF;
  --gray-1:      #F9F6F8;
  --gray-2:      #EDE8ED;
  --gray-3:      #B8A8B8;

  --text:        #0A0A0A;
  --text-sec:    #4A3A48;
  --text-muted:  #8A7A88;

  --glass-w:     rgba(255,255,255,0.06);
  --glass-b:     rgba(255,255,255,0.12);

  --font-body:    'Raleway', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --container:   1200px;
  --pad:         clamp(16px, 4vw, 32px);
  --section-v:   clamp(80px, 10vw, 130px);

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-pop:    cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-pink: 0 0 48px rgba(250,131,203,0.35);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── HELPERS ──────────────────────────────────────────────── */
.cn-container   { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.breathing-font { font-family: var(--font-elegant); font-style: italic; }
.text-pink      { color: var(--pink); }
.hidden         { display: none !important; }

/* ── EYEBROW ──────────────────────────────────────────────── */
.cn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.cn-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}
.btn-glow::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.btn-glow:hover::before  { transform: translateX(100%); }
.btn-glow:hover {
  background: var(--pink-dark);
  box-shadow: var(--shadow-pink), 0 8px 24px rgba(250,131,203,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  border: 1.5px solid var(--pink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
.cn-section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.cn-section-title {
  font-family: var(--font-elegant);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 300; font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.cn-section-title-white { color: #fff; }
.cn-section-title-dark  { color: var(--black); }
.cn-section-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  font-weight: 300;
}
.cn-section-desc-muted { color: rgba(255,255,255,0.55); }
.cn-section-desc-dark  { color: var(--text-sec); }

/* ════════════════════════════════════════════════════════════
   NAVIGATION BAR
   ════════════════════════════════════════════════════════════ */
.cn-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.45s var(--ease);
}
.cn-navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(250,131,203,0.08), 0 8px 32px rgba(0,0,0,0.3);
}
.cn-nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cn-nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer;
}
.cn-logo-monogram {
  width: 40px; height: 40px;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-elegant);
  font-size: 15px; font-weight: 600; font-style: italic;
  letter-spacing: 1px; flex-shrink: 0;
  transition: transform 0.3s var(--ease-pop), box-shadow 0.3s;
}
.cn-logo-monogram:hover { transform: scale(1.08); box-shadow: var(--shadow-pink); }
.cn-logo-text { display: flex; flex-direction: column; gap: 1px; }
.cn-logo-name { font-size: 14px; font-weight: 800; letter-spacing: 0.06em; color: #fff; line-height: 1; }
.cn-logo-tagline { font-size: 9px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; }

.cn-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cn-nav-link {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.cn-nav-link:hover { background: rgba(250,131,203,0.12); color: var(--pink); }
.cn-nav-link-home {
  color: var(--pink) !important;
  border: 1px solid rgba(250,131,203,0.35);
  font-weight: 700;
}
.cn-nav-link-home:hover { background: var(--pink) !important; color: #fff !important; border-color: var(--pink); }

.cn-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.cn-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 999px; transition: all 0.3s; }
.cn-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.cn-hamburger.open span:nth-child(2) { opacity: 0; }
.cn-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════════════════════════ */
.cn-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cn-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/costa-norte/hero.png');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.cn-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.78) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.82) 100%
  );
}
.cn-hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(250,131,203,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,131,203,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cn-hero-content {
  position: relative; z-index: 10;
  max-width: var(--container); margin: 0 auto;
  padding: clamp(120px, 14vw, 160px) var(--pad) 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.cn-hero-text {
  display: flex; flex-direction: column; gap: 28px;
  background: rgba(10,10,10,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.04);
}
.cn-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink);
  background: rgba(250,131,203,0.08); border: 1px solid rgba(250,131,203,0.25);
  padding: 8px 20px; border-radius: 100px;
  width: fit-content;
}
.cn-hero-title {
  font-family: var(--font-elegant); font-style: italic;
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 300; line-height: 1.12;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 4px 40px rgba(0,0,0,0.3);
}
.cn-hero-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.cn-hero-subtitle strong { color: var(--pink); font-weight: 600; }

.cn-hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cn-hero-cta-sub {
  font-size: 12px; color: rgba(255,255,255,0.35);
  font-style: italic; padding-left: 4px;
}

/* Lis Video in Hero */
.cn-hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cn-hero-video-frame {
  width: 280px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(250,131,203,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(250,131,203,0.08);
  background: var(--black-2);
}
.cn-hero-video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cn-video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(250,131,203,0.85);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.35s var(--ease);
  animation: cnPulsePlay 2s ease-in-out infinite;
}
.cn-video-play-btn:hover {
  background: var(--pink);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-pink);
}
.cn-video-play-btn.playing { opacity: 0; pointer-events: none; }

@keyframes cnPulsePlay {
  0%, 100% { box-shadow: 0 0 0 0 rgba(250,131,203,0.4); }
  50% { box-shadow: 0 0 0 18px rgba(250,131,203,0); }
}

.cn-video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  z-index: 4;
}
.cn-video-label span {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll indicator */
.cn-hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; z-index: 10;
  animation: cnScroll 2.2s ease-in-out infinite;
}
.cn-scroll-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.cn-scroll-line  { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--pink), transparent); animation: cnSLine 2.2s ease-in-out infinite; }
@keyframes cnScroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes cnSLine  { 0%{ opacity:0; transform:scaleY(0); transform-origin:top; } 50%{ opacity:1; transform:scaleY(1); } 100%{ opacity:0; } }

/* ════════════════════════════════════════════════════════════
   2. FILTRO ALONSO EN COSTA NORTE
   ════════════════════════════════════════════════════════════ */
.cn-filtro {
  padding: var(--section-v) 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.cn-filtro-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(250,131,203,0.05) 0%, transparent 70%);
}

.cn-filtro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}

.cn-filtro-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.4s var(--ease);
}
.cn-filtro-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}
.cn-filtro-card:hover::after { transform: scaleX(1); }
.cn-filtro-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(250,131,203,0.22);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 40px rgba(250,131,203,0.07);
}

.cn-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(250,131,203,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 22px;
  background: rgba(250,131,203,0.07);
  transition: all 0.3s;
}
.cn-filtro-card:hover .cn-card-icon {
  background: rgba(250,131,203,0.12);
  border-color: rgba(250,131,203,0.35);
}

.cn-card-title {
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  margin-bottom: 14px;
}
.cn-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-weight: 300;
  font-family: var(--font-elegant);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   3. AMENIDADES PREMIUM (Horizontal Scroll)
   ════════════════════════════════════════════════════════════ */
.cn-amenidades {
  padding: var(--section-v) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cn-amenidades-track-wrap {
  position: relative;
  margin-top: 48px;
}

.cn-amenidades-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad) 24px;
  scrollbar-width: none;
  cursor: grab;
}
.cn-amenidades-track:active { cursor: grabbing; }
.cn-amenidades-track::-webkit-scrollbar { display: none; }

.cn-amenidad-card {
  min-width: 360px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--ease);
}
.cn-amenidad-card:hover {
  border-color: rgba(250,131,203,0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.cn-amenidad-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.cn-amenidad-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cn-amenidad-name {
  font-size: 17px; font-weight: 700; color: #fff;
}
.cn-amenidad-desc {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; font-weight: 300;
  font-family: var(--font-elegant); font-style: italic;
}

/* Scroll arrows */
.cn-amenidades-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.cn-arrow-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.cn-arrow-btn:hover {
  background: rgba(250,131,203,0.12);
  border-color: rgba(250,131,203,0.35);
  color: var(--pink);
}

/* ════════════════════════════════════════════════════════════
   4. CONFIANZA TÉCNICA (Fondo Blanco)
   ════════════════════════════════════════════════════════════ */
.cn-tecnica {
  padding: var(--section-v) 0;
  background: var(--white);
  position: relative;
}

.cn-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.cn-spec-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cn-spec-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.cn-specs-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cn-spec-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-2);
  align-items: start;
}
.cn-spec-row:first-child { border-top: 1px solid var(--gray-2); }
.cn-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}
.cn-spec-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}
.cn-spec-value strong { color: var(--pink); font-weight: 700; }

.cn-spec-highlight {
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-1);
  border-radius: 16px;
  border-left: 3px solid var(--pink);
}
.cn-spec-highlight p {
  font-size: 14px; color: var(--text-sec);
  line-height: 1.7; font-weight: 300;
  font-family: var(--font-elegant); font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   5. FAQ & RESPALDO
   ════════════════════════════════════════════════════════════ */
.cn-faq {
  padding: var(--section-v) 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.cn-faq-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(250,131,203,0.06) 0%, transparent 65%);
}

.cn-faq-content {
  position: relative; z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* Respaldo box */
.cn-respaldo {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(250,131,203,0.15);
  border-radius: 22px;
  padding: 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: start;
  gap: 20px;
}
.cn-respaldo-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(250,131,203,0.1);
  border: 1px solid rgba(250,131,203,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  font-size: 22px;
}
.cn-respaldo-text h3 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.cn-respaldo-text p {
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.75; font-weight: 300;
  font-family: var(--font-elegant); font-style: italic;
}

/* Accordion */
.cn-faq-list { display: flex; flex-direction: column; gap: 12px; }

.cn-faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.cn-faq-item:hover {
  border-color: rgba(250,131,203,0.15);
}
.cn-faq-item.open {
  border-color: rgba(250,131,203,0.25);
  background: rgba(250,131,203,0.03);
}

.cn-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: left;
  transition: color 0.3s;
}
.cn-faq-question:hover { color: var(--pink); }
.cn-faq-item.open .cn-faq-question { color: var(--pink); }

.cn-faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  color: var(--pink);
}
.cn-faq-item.open .cn-faq-chevron { transform: rotate(180deg); }

.cn-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}
.cn-faq-item.open .cn-faq-answer {
  max-height: 300px;
}
.cn-faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  font-weight: 300;
  font-family: var(--font-elegant);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   6. CIERRE + CTA FINAL
   ════════════════════════════════════════════════════════════ */
.cn-cierre {
  padding: var(--section-v) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.cn-cierre-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 50% 110%, rgba(250,131,203,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 20% 20%, rgba(250,131,203,0.06) 0%, transparent 65%);
}

.cn-cierre-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cn-cierre-visual {
  display: flex;
  justify-content: center;
}
.cn-cierre-frame {
  width: 320px; height: 400px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(250,131,203,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 60px rgba(250,131,203,0.08);
}
.cn-cierre-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.cn-cierre-frame .cn-hero-lis-fallback {
  display: none;
}

.cn-cierre-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cn-cierre-quote {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  border-left: 3px solid var(--pink);
  padding-left: 22px;
}

/* Form */
.cn-form-glass {
  width: 100%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px 32px;
}
.cn-form-glass form { display: flex; flex-direction: column; gap: 16px; }
.cn-form-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.cn-form-field label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.cn-form-field input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: #fff;
  width: 100%;
  transition: all 0.3s; outline: none;
}
.cn-form-field input::placeholder { color: rgba(255,255,255,0.22); }
.cn-form-field input:focus {
  border-color: var(--pink);
  background: rgba(250,131,203,0.05);
  box-shadow: 0 0 0 3px rgba(250,131,203,0.1);
}
.cn-form-submit { width: 100%; justify-content: center; padding: 17px 32px; font-size: 14px; }
.cn-form-privacy { font-size: 11px; color: rgba(255,255,255,0.28); text-align: center; }

/* Loading / Success states */
.cn-loading-wrap {
  width: 100%; padding: 48px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.cn-loading-orb {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(250,131,203,0.2); border-top-color: var(--pink);
  animation: cnSpin 0.9s linear infinite;
}
@keyframes cnSpin { to { transform: rotate(360deg); } }
.cn-loading-text { color: rgba(255,255,255,0.5); font-size: 13px; letter-spacing: 0.05em; }

.cn-success-wrap { padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cn-success-ring {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(250,131,203,0.1); border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center; color: var(--pink);
  animation: cnPop 0.6s var(--ease-pop);
}
@keyframes cnPop { 0%{ transform:scale(0); opacity:0; } 100%{ transform:scale(1); opacity:1; } }
.cn-success-title { font-size: 28px; font-weight: 300; color: #fff; font-family: var(--font-elegant); font-style: italic; }
.cn-success-text  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 360px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.cn-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
  text-align: center;
}
.cn-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cn-footer p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}
.cn-footer a {
  font-size: 12px;
  color: rgba(250,131,203,0.5);
  transition: color 0.3s;
}
.cn-footer a:hover { color: var(--pink); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════ */
.cn-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.cn-reveal.visible { opacity: 1; transform: translateY(0); }

.cn-reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.cn-reveal-left.visible { opacity: 1; transform: translateX(0); }

.cn-reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.cn-reveal-right.visible { opacity: 1; transform: translateX(0); }

.cn-animate-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.cn-animate-in.visible { opacity: 1; transform: translateY(0); }
.cn-delay-1 { transition-delay: 0.1s; }
.cn-delay-2 { transition-delay: 0.25s; }
.cn-delay-3 { transition-delay: 0.4s; }
.cn-delay-4 { transition-delay: 0.55s; }
.cn-delay-5 { transition-delay: 0.7s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE & MOBILE OPTIMIZATION
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cn-hero-content { grid-template-columns: 1fr; text-align: center; }
  .cn-hero-text { align-items: center; }
  .cn-hero-subtitle { max-width: 100%; }
  .cn-hero-portrait { justify-content: center; order: -1; }
  .cn-hero-video-frame { width: 240px; }
  .cn-eyebrow::before { display: none; }
  .cn-specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .cn-cierre-container { grid-template-columns: 1fr; gap: 48px; }
  .cn-cierre-visual { order: -1; }
}

@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --pad: 20px;
  }

  html, body { overflow-x: hidden; }

  /* Static backgrounds */
  .cn-hero-bg { background-attachment: scroll !important; }

  /* Nav Mobile */
  .cn-nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,12,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 32px; z-index: 999;
  }
  .cn-nav-links.open { display: flex; }
  .cn-nav-link { font-size: 22px; color: #fff !important; padding: 12px 24px; font-weight: 300; }
  .cn-hamburger { display: flex; z-index: 1000; position: relative; }

  /* Hero */
  .cn-hero { min-height: auto; padding-bottom: 80px; }
  .cn-hero-content { gap: 32px; padding-top: 120px; }
  .cn-hero-title { font-size: 34px; }
  .cn-hero-subtitle { font-size: 15px; }
  .cn-hero-cta { align-items: center; width: 100%; }
  .cn-hero-text { padding: 28px 24px; }
  .cn-hero-cta .btn-glow { width: 100%; justify-content: center; }
  .cn-hero-video-frame { width: 220px; }

  /* Section headers */
  .cn-section-header { margin-bottom: 40px; padding: 0 10px; }
  .cn-section-title { font-size: 30px; }

  /* Filtro */
  .cn-filtro-grid { grid-template-columns: 1fr; gap: 16px; }
  .cn-filtro-card { padding: 32px 24px; }

  /* Amenidades */
  .cn-amenidad-card { min-width: 300px; }
  .cn-amenidad-img { height: 200px; }

  /* Form */
  .cn-form-glass { padding: 28px 20px; }
  .cn-form-field input { font-size: 16px; }

  /* FAQ */
  .cn-respaldo { flex-direction: column; padding: 24px; }
  .cn-faq-question { padding: 18px 20px; font-size: 14px; }
  .cn-faq-answer-inner { padding: 0 20px 18px; }

  /* Cierre */
  .cn-cierre-frame { width: 260px; height: 340px; }
  .cn-cierre-quote { font-size: 18px; padding-left: 16px; }

  /* Footer */
  .cn-footer { padding: 32px 0; }
}

@media (max-width: 480px) {
  .cn-hero-title { font-size: 30px; }
  .cn-hero-video-frame { width: 200px; }
  .cn-video-play-btn { width: 56px; height: 56px; }
  .cn-section-title { font-size: 26px; }
  .cn-cierre-frame { width: 220px; height: 290px; }
  .cn-amenidad-card { min-width: 280px; }
}
