/* =====================================================================
   On Vacation — Sitio público
   Solo presentación. Compatible con formulario.php / formulario_movil.php
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ov-red: #C62E3D;
  --ov-red-dark: #A5222F;
  --ov-red-soft: rgba(198, 46, 61, 0.1);
  --ov-ink: #0F172A;
  --ov-muted: #64748B;
  --ov-bg: #FFFFFF;
  --ov-bg-soft: #F4F6FA;
  --ov-border: #E2E8F0;
  --ov-nav-h: 76px;
  --font-display: 'Dosis', sans-serif;
  --font-ui: 'Manrope', 'Dosis', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site-body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  background: var(--ov-bg);
  color: var(--ov-ink);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; }

a { color: var(--ov-red); }
a:hover { color: var(--ov-red-dark); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
#preloader img {
  width: 140px;
  animation: ov-blink 1s infinite;
}
@keyframes ov-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- NAV ---------- */
.site-nav {
  background: var(--ov-red);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  min-height: var(--ov-nav-h);
  box-shadow: 0 8px 24px rgba(198, 46, 61, 0.28);
}

.site-nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.site-nav .nav-brand img.logo-main {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav .nav-brand img.logo-agent {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.site-nav .menu li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}

.site-nav .menu li a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-nav .menu li a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-nav .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin: 0.75rem 0.25rem;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
}

.site-nav .hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .site-nav .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #B02836;
    position: absolute;
    top: var(--ov-nav-h);
    left: 0;
    width: 100%;
    padding: 0.75rem;
    gap: 0.25rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  .site-nav .menu.show { display: flex; }
  .site-nav .menu li a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }
  .site-nav .hamburger { display: flex; }
  .site-nav .nav-brand img.logo-agent { display: none; }
}

/* ---------- PAGE SHELL ---------- */
.site-main {
  padding-top: var(--ov-nav-h);
  color: var(--ov-ink);
}

.site-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 40px;
  color: #fff;
}

.page-hero-inner .brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
}

.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.page-hero-inner p {
  margin: 10px 0 0;
  max-width: 42ch;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

/* ---------- SECTIONS ---------- */
.site-section {
  padding: 56px 20px;
}

.site-section.soft { background: var(--ov-bg-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section-head .eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ov-red);
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--ov-ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ov-muted);
  font-weight: 600;
  font-size: 1.02rem;
}

.intro-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-block .brand-line {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ov-red);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.intro-block p {
  margin: 0;
  color: #475569;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

/* Banner medios de pago: asset 4223×901 (~4.7:1).
   Más grande y responsive en desktop / tablet / móvil. */
.pago-banner-wrap {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.pago-banner {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 4223 / 901;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.25s ease;
}
.pago-banner:hover { transform: translateY(-2px); }

@media (max-width: 640px) {
  .pago-banner-wrap { padding: 0 10px; }
  .pago-banner { border-radius: 8px; }
}

/* ---------- WHY / CIRCLES + CHARTS + CARDS ---------- */
.stats-circles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 6vw, 72px);
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto 36px;
  padding: 8px 12px 4px;
}

.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
  animation: ov-rise 0.65s ease both;
}

.stat-circle:nth-child(2) { animation-delay: 0.08s; }
.stat-circle:nth-child(3) { animation-delay: 0.16s; }

.stat-ring {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  position: relative;
}

.stat-ring::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.stat-ring .stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-ring .stat-unit {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.stat-circle .stat-caption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ov-ink);
  line-height: 1.25;
}

.stat-circle .stat-note {
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ov-muted);
}

.stat-ring.red {
  background: radial-gradient(circle at 30% 25%, #E84555, #C62E3D 55%, #A5222F);
}
.stat-ring.orange {
  background: radial-gradient(circle at 30% 25%, #FB923C, #F97316 55%, #EA580C);
}
.stat-ring.gray {
  background: radial-gradient(circle at 30% 25%, #94A3B8, #64748B 55%, #475569);
}

.charts-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.chart-box {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 18px;
  padding: 18px 18px 12px;
  box-shadow: var(--shadow-sm);
}

.chart-box-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.chart-box-head h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: var(--ov-ink);
}

.chart-box-head span {
  font-size: 0.72rem;
  font-weight: 700;
  background: #FFF7ED;
  color: #C2410C;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.chart-canvas-wrap {
  position: relative;
  height: 220px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: ov-rise 0.7s ease both;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ov-red), #F97316);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card:nth-child(2) { animation-delay: 0.06s; }
.why-card:nth-child(3) { animation-delay: 0.12s; }
.why-card:nth-child(4) { animation-delay: 0.18s; }
.why-card:nth-child(5) { animation-delay: 0.24s; }
.why-card:nth-child(6) { animation-delay: 0.3s; }

.why-card .why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ov-red-soft);
  color: var(--ov-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.why-card h3 {
  font-family: var(--font-display);
  color: var(--ov-ink);
  font-weight: 800;
  font-size: 1.12rem;
  margin: 0;
}

.why-card .why-highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ov-red);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  color: var(--ov-muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.why-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.why-card.span-2 { grid-column: span 2; }

@keyframes ov-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .charts-panel { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card.span-2 { grid-column: span 2; }
  .chart-canvas-wrap { height: 200px; }
}
@media (max-width: 560px) {
  .stat-ring { width: 118px; height: 118px; }
  .stat-circle { width: 130px; }
  .stat-ring .stat-num { font-size: 1.55rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card.span-2 { grid-column: span 1; }
  .chart-canvas-wrap { height: 180px; }
}

/* ---------- MEGA PAQUETES — banda equilibrada ---------- */
.mega-section {
  padding: 0;
  background:
    linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
}

.mega-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.mega-split-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  background: #0F172A;
  min-width: 0;
  justify-self: stretch;
}

.mega-split-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 769 / 451;
  object-fit: cover;
}

.mega-split-copy {
  min-width: 0;
  max-width: 440px;
  justify-self: start;
}

.mega-split-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ov-red);
  margin-bottom: 10px;
}

.mega-split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--ov-ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.mega-split-copy h2 em {
  font-style: normal;
  color: var(--ov-red);
}

.mega-split-copy p {
  margin: 0 0 22px;
  color: var(--ov-muted);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--ov-red);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 22px rgba(198, 46, 61, 0.28);
}

.btn-mega:hover {
  background: var(--ov-red-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .mega-split {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .mega-split-copy {
    max-width: 520px;
    margin: 0 auto;
    justify-self: center;
    order: -1;
  }
  .mega-split-media { max-width: 640px; margin: 0 auto; width: 100%; }
}

/* ---------- PROMO GALLERY ---------- */
.galeria-container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ov-border);
}

.galeria-slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

.galeria-slider img {
  min-width: calc(100% / 3);
  height: auto;
  object-fit: cover;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .galeria-slider img { min-width: 100%; }
}

/* ---------- BANNER HOME ---------- */
.banner-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #0F172A;
}

.banner-slider {
  display: flex;
  width: max-content;
  animation: slideBanner 64s steps(1) infinite;
}

.banner-slider img {
  width: 100vw;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes slideBanner {
  0% { transform: translateX(0); }
  12.5% { transform: translateX(-100vw); }
  25% { transform: translateX(-200vw); }
  37.5% { transform: translateX(-300vw); }
  50% { transform: translateX(-400vw); }
  62.5% { transform: translateX(-500vw); }
  75% { transform: translateX(-600vw); }
  87.5% { transform: translateX(-700vw); }
  100% { transform: translateX(-800vw); }
}

/* ---------- INNER CONTENT ---------- */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.page-content .titulo,
.page-content h2.titulo {
  font-family: var(--font-display);
  text-align: center;
  color: var(--ov-red);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.page-content .subtitulo {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.7;
}

.page-content .section-title {
  font-family: var(--font-display);
  color: var(--ov-red);
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page-content .img-full {
  width: 100%;
  border-radius: 14px;
  margin: 16px 0;
  display: block;
}

.page-content .columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.page-content .card {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-content .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-content .card h3,
.page-content .card .section-title {
  margin-top: 12px;
  font-family: var(--font-display);
}

.page-content .card p {
  color: var(--ov-muted);
  font-weight: 500;
  flex: 1;
}

.page-content .perfil {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--ov-border);
  border-bottom: 1px solid var(--ov-border);
  flex-wrap: wrap;
}

.page-content .perfil img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

.page-content .perfil-info { flex: 1; min-width: 220px; }

.page-content ul {
  padding-left: 1.2rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.8;
}

.hotel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.btn-hotel {
  flex: 1 1 auto;
  background: var(--ov-red);
  color: #fff !important;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn-hotel:hover {
  background: var(--ov-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(198, 46, 61, 0.28);
  color: #fff !important;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-top: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  transition: transform 0.2s ease;
}

.wa-cta:hover { transform: translateY(-2px); }

.wa-cta img { width: 36px; height: 36px; }

.wa-cta span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #059669;
  font-weight: 700;
}

.wa-cta-wrap { text-align: center; }

/* ---------- CONTACT ---------- */
.contacto-layout {
  padding: 32px 20px 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.contacto-info {
  max-width: 480px;
  margin: 24px auto 0;
  padding: 28px 28px 30px;
  background: var(--ov-bg-soft);
  border: 1px solid var(--ov-border);
  border-radius: 18px;
}

.contacto-info h2 {
  font-family: var(--font-display);
  text-align: center;
  color: var(--ov-red);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.contacto-info h3 {
  font-family: var(--font-display);
  color: var(--ov-ink);
  font-size: 1.15rem;
  margin: 16px 0 8px;
}

.contacto-info p {
  margin: 0 0 8px;
  color: #475569;
  font-weight: 500;
}

.contacto-info a {
  color: var(--ov-red);
  font-weight: 700;
  text-decoration: none;
}

/* ---------- SOCIAL ---------- */
.social-page {
  padding: 40px 20px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-page > .titulo {
  font-family: var(--font-display);
  text-align: center;
  color: var(--ov-red);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 24px auto 32px;
  max-width: 28ch;
  line-height: 1.2;
}

.tiktok-row {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.tiktok-item {
  flex: 0 0 325px;
  scroll-snap-align: start;
}

.tiktok-item p {
  text-align: center;
  font-weight: 700;
  color: var(--ov-ink);
  margin-top: 10px;
  font-family: var(--font-display);
}

.redes-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.red-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--ov-ink);
  font-family: var(--font-display);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.red-link:hover {
  color: var(--ov-red);
  border-bottom-color: var(--ov-red);
  transform: translateY(-2px);
}

.red-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--ov-border);
  padding: 48px 20px 28px;
  font-family: var(--font-ui);
}

.site-footer a {
  color: #334155;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover {
  color: var(--ov-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  color: var(--ov-red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  line-height: 1.3;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col li {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 1.4;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer-legal {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 36px;
  color: #64748B;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.55;
}

.footer-legal a { color: var(--ov-red); font-weight: 700; }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-fijo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-fijo img {
  width: 58px;
  filter: drop-shadow(0 6px 14px rgba(37, 211, 102, 0.35));
  transition: transform 0.2s ease;
}
.whatsapp-fijo img:hover { transform: scale(1.08); }

/* ---------- MODAL OK ---------- */
.modal-ok-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
.modal-ok-card {
  background: #fff;
  padding: 32px 36px;
  border-radius: 18px;
  text-align: center;
  font-family: var(--font-ui);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
  animation: ov-zoom 0.4s ease;
}
.modal-ok-card h2 {
  font-family: var(--font-display);
  color: var(--ov-red);
  margin: 0 0 10px;
}
.modal-ok-card p {
  font-size: 1.05rem;
  color: #475569;
  margin: 0;
  font-weight: 500;
}
.modal-ok-card button {
  margin-top: 20px;
  padding: 11px 26px;
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--ov-red);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}
@keyframes ov-zoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =====================================================================
   DESTINOS DESTACADOS (tarjetas "Desde $X" del Index)
   ===================================================================== */
.destacados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.destacado-card {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: ov-rise 0.6s ease both;
}
.destacado-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.destacado-card:nth-child(2) { animation-delay: 0.06s; }
.destacado-card:nth-child(3) { animation-delay: 0.12s; }
.destacado-card:nth-child(4) { animation-delay: 0.18s; }

.destacado-foto {
  position: relative;
  height: 168px;
  background-size: cover;
  background-position: center;
}
.destacado-foto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,0.35) 100%);
}

.destacado-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--ov-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(198, 46, 61, 0.32);
}
.destacado-badge strong { font-weight: 800; }

.destacado-cuerpo {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.destacado-cuerpo h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ov-ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.destacado-desc {
  font-size: 0.9rem;
  color: var(--ov-muted);
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.4;
}

.destacado-precio {
  background: var(--ov-red-soft);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.destacado-precio-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ov-muted);
}
.destacado-precio-valor {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ov-red);
  line-height: 1.1;
}
.destacado-precio--consultar .destacado-precio-valor {
  font-size: 1.05rem;
}

.destacado-tours {
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.destacado-tours i { color: var(--ov-red); }
.destacado-tours strong { color: var(--ov-ink); font-weight: 800; }

.destacado-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #10B981;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.destacado-cta:hover {
  background: #0EA271;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.3);
}

.destacados-disclaimer {
  max-width: 1120px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--ov-muted);
  font-weight: 500;
}

@media (max-width: 1000px) {
  .destacados-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .destacados-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   QUÉ INCLUYE / QUÉ NO INCLUYE  (contacto.php)
   ===================================================================== */
.incluye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.incluye-card {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-sm);
}
.incluye-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ov-ink);
}
.incluye-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.incluye-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
}
.incluye-card li:last-child { border-bottom: none; }
.incluye-card li i {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 0.95rem;
}
.incluye-card--si { border-top: 4px solid #10B981; }
.incluye-card--si h3 i,
.incluye-card--si li i { color: #10B981; }
.incluye-card--no { border-top: 4px solid var(--ov-red); }
.incluye-card--no h3 i,
.incluye-card--no li i { color: var(--ov-red); }

.incluye-nota {
  max-width: 1000px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ov-muted);
  font-weight: 500;
}

@media (max-width: 720px) {
  .incluye-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FAQ ACORDEÓN  (contacto.php)  — usa <details>/<summary> nativo
   ===================================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--ov-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ov-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
/* Oculta el marcador nativo (triangulo) en todos los navegadores. */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ov-red-soft);
  color: var(--ov-red);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 24px;
  text-align: center;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--ov-red);
  color: #fff;
}
.faq-item summary:hover { color: var(--ov-red); }
.faq-item summary:focus-visible {
  outline: 3px solid var(--ov-red);
  outline-offset: -3px;
  border-radius: 14px;
}

.faq-body {
  padding: 0 22px 20px;
}
.faq-body p {
  margin: 0;
  color: #475569;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
}

.faq-cta {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
}
.faq-cta p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ov-ink);
  margin: 0 0 12px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #10B981;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-cta-btn:hover {
  background: #0EA271;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.3);
}
