/* ============================================================
   VEGA HOME VACACIONAL — CSS Premium Compartido
   Paleta: blanco #FFFFFF | gris frío #F7F8FA | coral #FF385C
   negro profundo #1A1A2E | texto #2D2D3A
   Tipografía: Playfair Display (títulos) + DM Sans (UI)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2D2D3A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --coral: #FF385C;
  --coral-dark: #E0314F;
  --navy: #1A1A2E;
  --text: #2D2D3A;
  --text-light: #6B7280;
  --gray-bg: #F7F8FA;
  --border: #E5E7EB;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --header-h: 72px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ─────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', serif; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { line-height: 1.7; color: var(--text-light); }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { max-width: 560px; margin: 12px auto 0; font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral); color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,56,92,.30); }
.btn-outline {
  background: transparent; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--navy);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy {
  background: var(--navy); color: #fff;
}
.btn-navy:hover { background: #0f0f1d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,.30); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-transparent {
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.site-header.is-open {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 42px; width: auto; transition: filter var(--transition); }
.site-header.is-transparent .header-logo img { filter: brightness(0) invert(1); }
.site-header.is-scrolled .header-logo img,
.site-header.is-open .header-logo img { filter: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.logo-sub {
  font-size: .65rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-light);
}
.site-header.is-transparent .logo-name { color: #fff; }
.site-header.is-transparent .logo-sub { color: rgba(255,255,255,.75); }

/* Desktop Nav */
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: .9rem; font-weight: 500; color: var(--text);
  transition: color var(--transition); position: relative;
}
.header-nav a::after {
  content:''; position: absolute; bottom:-4px; left:0; right:0;
  height: 2px; background: var(--coral); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-nav a:hover { color: var(--coral); }
.site-header.is-transparent .header-nav a { color: rgba(255,255,255,.9); }
.site-header.is-transparent .header-nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: .85rem; font-weight: 600; color: var(--text);
  transition: color var(--transition);
}
.site-header.is-transparent .header-phone { color: rgba(255,255,255,.9); }
.site-header.is-transparent .header-phone:hover { color: #fff; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; gap: 5px; border-radius: 8px;
  transition: background var(--transition); flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,0,0,.06); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition); transform-origin: center;
}
.site-header.is-transparent .hamburger span { background: #fff; }
.site-header.is-open .hamburger span { background: var(--navy); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer móvil */
.nav-drawer {
  position: fixed; top: 0; right: -100%; width: min(340px, 88vw);
  height: 100dvh; background: #fff; z-index: 1100;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,.15);
  transition: right .35s cubic-bezier(.4,0,.2,1);
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-drawer.is-open { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-bg); color: var(--navy);
  transition: background var(--transition);
}
.drawer-close:hover { background: var(--border); }
.drawer-nav { flex: 1; padding: 8px 16px; overflow-y: auto; }
.drawer-nav a {
  display: block; padding: 14px 12px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border-radius: 8px; transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.drawer-nav a:hover { background: var(--gray-bg); color: var(--coral); }
.drawer-nav a.active { color: var(--coral); font-weight: 600; }
.drawer-footer {
  padding: 20px 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.drawer-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 12px;
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: .9rem;
  transition: background var(--transition);
}
.drawer-cta-call:hover { background: #0f0f1d; }
.drawer-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 12px;
  background: #25D366; color: #fff;
  font-weight: 600; font-size: .9rem;
  transition: background var(--transition);
}
.drawer-cta-wa:hover { background: #1eba58; }

/* Overlay drawer */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px); z-index: 1099;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.nav-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 640px; max-height: 900px;
  display: flex; align-items: center; justify-content: 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.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,46,.62) 0%,
    rgba(26,26,46,.35) 50%,
    rgba(26,26,46,.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 860px; width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  margin-bottom: 16px;
}
.hero-content h1 { color: #fff; margin-bottom: 16px; }
.hero-content h1 em { font-style: italic; color: rgba(255,255,255,.88); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.80); margin-bottom: 40px; line-height: 1.6; }

/* Hero Search Box */
.hero-search {
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  padding: 6px; max-width: 800px; margin: 0 auto;
}
.search-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  margin-bottom: 4px; padding: 2px 4px 0;
}
.search-tab {
  padding: 10px 20px; font-size: .85rem; font-weight: 600;
  color: var(--text-light); border-radius: 12px 12px 0 0;
  transition: all var(--transition); cursor: pointer;
}
.search-tab.active { color: var(--coral); background: rgba(255,56,92,.06); }
.search-fields {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr .9fr auto;
  gap: 0; align-items: center;
}
.search-field {
  padding: 12px 16px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background var(--transition); border-radius: 12px;
}
.search-field:last-of-type { border-right: none; }
.search-field:hover { background: var(--gray-bg); }
.field-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 4px; }
.field-value { font-size: .9rem; color: var(--text-light); }
.search-field select, .search-field input {
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: .9rem; color: var(--text);
  width: 100%; cursor: pointer;
}
.guest-counter { display: flex; align-items: center; gap: 8px; }
.guest-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text); transition: all var(--transition);
}
.guest-btn:hover { border-color: var(--navy); color: var(--navy); }
.guest-count { font-size: .9rem; font-weight: 600; min-width: 18px; text-align: center; }
.search-btn {
  background: var(--coral); color: #fff;
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem;
  transition: all var(--transition); white-space: nowrap; margin: 6px;
}
.search-btn:hover { background: var(--coral-dark); transform: scale(1.03); }
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 500;
}
.trust-item svg { flex-shrink: 0; }

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── LANDING HERO (páginas internas) ────────────────────────── */
.page-hero {
  position: relative; height: 520px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; margin-top: var(--header-h);
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,.30) 0%, rgba(26,26,46,.72) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 56px 48px; color: #fff;
}
.page-hero-content .section-label { color: rgba(255,255,255,.75); }
.page-hero-content h1 { color: #fff; max-width: 700px; margin-bottom: 16px; }
.page-hero-content p { color: rgba(255,255,255,.80); max-width: 560px; font-size: 1.05rem; margin-bottom: 28px; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb span { color: rgba(255,255,255,.40); }

/* ── DESTINATIONS GRID ──────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 480px;
  gap: 16px;
}
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; display: block;
}
.dest-card.featured { grid-column: span 2; }
.dest-card-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.dest-card:hover .dest-card-img { transform: scale(1.04); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,26,46,.78) 100%);
}
.dest-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px; color: #fff;
}
.dest-card-content h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.dest-card-content span { font-size: .8rem; color: rgba(255,255,255,.70); }
.dest-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,.25);
}
.dest-card-arrow {
  position: absolute; bottom: 24px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.20); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--transition);
}
.dest-card:hover .dest-card-arrow { background: var(--coral); transform: translateX(4px); }

/* ── PROPERTY CARDS ─────────────────────────────────────────── */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: all var(--transition); cursor: pointer;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prop-card-img {
  height: 220px; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.prop-card:hover .prop-card-img { transform: scale(1.04); }
.prop-card-body { padding: 20px; }
.prop-card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: .78rem; color: var(--text-light); margin-bottom: 8px;
}
.prop-card-body h4 { color: var(--navy); margin-bottom: 8px; }
.prop-card-meta {
  display: flex; gap: 12px; margin-bottom: 16px;
  font-size: .82rem; color: var(--text-light);
}
.prop-card-meta span { display: flex; align-items: center; gap: 4px; }
.prop-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.prop-price { font-size: 1rem; font-weight: 700; color: var(--navy); }
.prop-price span { font-size: .78rem; font-weight: 400; color: var(--text-light); }
.prop-rating { display: flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 600; }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy); padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: #fff;
  line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.78); margin-top: 6px; }

/* ── BENEFITS GRID ──────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--gray-bg); transition: all var(--transition);
}
.benefit-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,56,92,.10); display: flex; align-items: center; justify-content: center;
  color: var(--coral); margin-bottom: 20px;
}
.benefit-card h4 { color: var(--navy); margin-bottom: 10px; }

/* ── OWNER SECTION ──────────────────────────────────────────── */
.owner-section { background: var(--navy); color: #fff; }
.owner-section h2 { color: #fff; }
.owner-section p { color: rgba(255,255,255,.70); }
.owner-section .section-label { color: rgba(255,255,255,.50); }
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.owner-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.owner-step { display: flex; gap: 20px; align-items: flex-start; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
}
.step-text h4 { color: #fff; margin-bottom: 6px; font-size: .95rem; }
.step-text p { font-size: .875rem; }
.owner-visual {
  border-radius: var(--radius); overflow: hidden;
  height: 440px; position: relative;
}
.owner-visual-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
}
.owner-card-float {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px; padding: 18px 20px;
  color: #fff;
}
.owner-card-float .earn { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display',serif; }
.owner-card-float span { font-size: .8rem; opacity: .7; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star-icon { color: #FFC23C; width: 16px; height: 16px; }
.testimonial-card p { font-size: .9rem; line-height: 1.7; margin-bottom: 16px; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background-size: cover; background-position: center; flex-shrink: 0;
}
.author-name { font-size: .875rem; font-weight: 600; color: var(--navy); }
.author-info { font-size: .78rem; color: var(--text-light); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: color var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--coral); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); color: var(--text-light); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--coral); }
.faq-answer { padding: 0 0 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { color: var(--text-light); }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2d2d6e 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.70); max-width: 480px; margin: 0 auto 32px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.70); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand {}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,.45); }
.footer-tagline { font-size: .875rem; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.70); transition: all var(--transition);
}
.social-link:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: .9rem; font-weight: 600; color: #fff;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .875rem; color: rgba(255,255,255,.60);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.50); transition: color var(--transition); }
.footer-legal a:hover { color: #fff; }

/* ── FAB WhatsApp ────────────────────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.40);
  transition: all var(--transition);
  animation: fab-pulse 2.5s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,.50); animation: none; }
@keyframes fab-pulse {
  0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.40)}
  50%{box-shadow:0 8px 40px rgba(37,211,102,.60), 0 0 0 8px rgba(37,211,102,.12)}
}
.fab-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.fab-tooltip::after {
  content:''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--navy);
}
.fab-wa:hover .fab-tooltip { opacity: 1; }

/* ── INPAGE SECTIONS ─────────────────────────────────────────── */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.icon-card {
  text-align: center; padding: 28px 20px;
  border-radius: var(--radius); background: var(--gray-bg);
  transition: all var(--transition);
}
.icon-card:hover { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.icon-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,56,92,.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral); margin: 0 auto 16px;
}
.icon-card h4 { color: var(--navy); font-size: .95rem; margin-bottom: 8px; }

/* Accommodation card types */
.accommodation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.accommodation-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 320px; cursor: pointer; display: block;
}
.accommodation-card-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.accommodation-card:hover .accommodation-card-img { transform: scale(1.04); }
.accommodation-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(26,26,46,.80) 100%);
}
.accommodation-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; color: #fff;
}
.accommodation-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 12px;
}
.accommodation-card-content h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.accommodation-card-content p { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(255,56,92,.06) 0%, rgba(255,56,92,.02) 100%);
  border: 1px solid rgba(255,56,92,.15);
  border-radius: var(--radius); padding: 32px;
  text-align: center;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 1; transform: none;
}
html.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet 768–1023 */
@media (max-width: 1023px) {
  :root { --header-h: 64px; }
  .header-nav, .header-actions .header-phone, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .dest-card.featured { grid-column: span 2; }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .owner-grid { grid-template-columns: 1fr; gap: 40px; }
  .owner-visual { height: 320px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .accommodation-grid { grid-template-columns: 1fr 1fr; }
  .accommodation-card:last-child { grid-column: span 2; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-fields .search-field:nth-child(3), .search-fields .search-field:nth-child(4) { border-top: 1px solid var(--border); }
  .search-btn { grid-column: 1 / -1; justify-content: center; margin: 4px; }
  .page-hero { height: 420px; }
  .page-hero-content { padding: 40px 32px; }
}

/* Móvil < 768 */
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .logo-sub { display: none; }
  .hero { min-height: auto; height: auto; padding: calc(var(--header-h) + 48px) 0 32px; }
  .hero-content { padding: 0 18px; }
  .hero-content h1 { font-size: 2.35rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-search { border-radius: 18px; }
  .hero-trust { gap: 12px 16px; margin-top: 18px; }
  .hero-scroll { display: none; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 1rem; color: var(--text); }
  .stats-strip { padding: 36px 0; }
  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .dest-card { height: 260px; }
  .dest-card.featured { grid-column: span 1; height: 300px; }
  .props-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .owner-visual { height: 260px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .accommodation-grid { grid-template-columns: 1fr; }
  .accommodation-card { height: 260px; }
  .accommodation-card:last-child { grid-column: span 1; }
  .search-fields { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .search-btn { width: 100%; justify-content: center; margin: 4px; }
  .search-tabs { overflow-x: auto; }
  .hero-trust { gap: 16px; }
  .hero-subtitle { font-size: .95rem; }
  .page-hero { height: 360px; }
  .page-hero-content { padding: 28px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* Móvil pequeño < 400 */
@media (max-width: 399px) {
  :root { --header-h: 56px; }
  h1 { font-size: 1.75rem; }
  .hero-content h1 { font-size: 1.65rem; }
  .stat-number { font-size: 1.9rem; }
  .icon-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   VEGA HOME VACACIONAL — Ajustes live 20260411c
   ============================================================ */
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,10,22,.82) 0%,
    rgba(10,10,22,.58) 45%,
    rgba(10,10,22,.74) 100%
  );
}
.hero-content h1,
.hero-subtitle,
.hero-eyebrow,
.trust-item {
  text-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.search-tab.search-tab-link { position: relative; }
.search-tab.search-tab-link::after {
  content: '↗';
  font-size: .72rem;
  margin-left: 6px;
  opacity: .75;
}
.owners-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.owners-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.owners-intro-visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
}
.stats-strip {
  background: linear-gradient(180deg, #161628 0%, #1A1A2E 100%);
}
.stat-label {
  color: rgba(255,255,255,.86);
}
@media (max-width: 767px) {
  .container, .container-sm { padding: 0 18px; }
  .hero {
    min-height: 0;
    padding: calc(var(--header-h) + 22px) 0 18px;
  }
  .hero-content { max-width: 100%; padding: 0 16px; }
  .hero-eyebrow { margin-bottom: 10px; font-size: .68rem; letter-spacing: .14em; }
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: .96rem;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-search {
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 18px 42px rgba(0,0,0,.20);
  }
  .search-tabs {
    margin-bottom: 2px;
    padding: 2px 2px 0;
  }
  .search-tab {
    padding: 9px 12px;
    font-size: .78rem;
  }
  .search-field {
    padding: 10px 14px;
  }
  .field-label {
    font-size: .64rem;
    margin-bottom: 2px;
  }
  .search-field select,
  .search-field input,
  .guest-count {
    font-size: .88rem;
  }
  .guest-btn {
    width: 24px;
    height: 24px;
  }
  .search-btn {
    margin: 4px;
    padding: 13px 16px;
    border-radius: 12px;
  }
  .hero-trust {
    margin-top: 14px;
    gap: 10px 14px;
  }
  .trust-item {
    font-size: .74rem;
    gap: 5px;
  }
  .stats-strip {
    padding: 24px 0;
  }
  .stats-grid {
    gap: 18px 12px;
  }
  .stat-number {
    font-size: 1.95rem;
  }
  .stat-label {
    font-size: .78rem;
    line-height: 1.35;
  }
  .section {
    padding: 42px 0;
  }
  .section-sm {
    padding: 32px 0;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-header p {
    margin-top: 8px;
    font-size: .96rem;
    line-height: 1.6;
  }
  .dest-card {
    height: 228px;
  }
  .dest-card.featured {
    height: 260px;
  }
  .accommodation-card {
    height: 236px;
  }
  .benefit-card,
  .icon-card,
  .testimonial-card {
    padding: 24px 20px;
  }
  .page-hero {
    height: 330px;
  }
  .page-hero-content {
    padding: 22px 20px;
  }
  .page-hero-content p {
    font-size: .96rem;
    margin-bottom: 20px;
  }
  .owners-kpis {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .owners-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .owners-intro-visual {
    height: 280px !important;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 399px) {
  .hero { padding-top: calc(var(--header-h) + 18px); }
  .hero-content h1 { font-size: 1.72rem; }
  .hero-subtitle { font-size: .9rem; }
  .search-tab { padding: 8px 10px; font-size: .75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
