/* ═══════════════════════════════════════════
   LIVING TRAVEL — Design System
   Bilingual CR ↔ MX Travel Agency
═══════════════════════════════════════════ */

/* ─────── Reset & Base ─────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Living Travel MX — brand color: sky blue #009FE3 ── */
  --primary: #009FE3;
  --primary-dark: #006DB3;
  --primary-light: #33B8F0;
  --accent: #00D4FF;
  --gold: #F4A261;
  --bg: #060D18;
  --bg2: #081422;
  --surface: rgba(0, 159, 227, 0.09);
  --glass-border: rgba(0, 159, 227, 0.22);
  --text: #E6F4FF;
  --text-muted: #7BA8C8;
  --gradient-hero: linear-gradient(135deg, rgba(0, 109, 179, 0.88) 0%, rgba(0, 212, 255, 0.12) 100%);

  /* ── Living Viajes CR — brand colors: turquoise #00B4D8 + purple #6B3FA0 ── */
  --cr-primary: #00B4D8;
  --cr-dark: #007A9E;
  --cr-accent: #A8E063;
  --cr-purple: #6B3FA0;
  --cr-gold: #F9844A;

  /* Typography */
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: clamp(5rem, 8vw, 9rem);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(0, 159, 227, 0.28);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─ CR Mode overrides — Living Viajes CR palette ─ */
.mode-cr {
  --primary: var(--cr-primary);
  --primary-dark: var(--cr-dark);
  --accent: var(--cr-purple);
  /* purple accent from logo */
  --gold: var(--cr-gold);
  --surface: rgba(0, 180, 216, 0.09);
  --glass-border: rgba(0, 180, 216, 0.22);
  --gradient-hero: linear-gradient(135deg, rgba(0, 122, 158, 0.88) 0%, rgba(107, 63, 160, 0.2) 100%);
  --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.28);
  --text-muted: #7BA8BD;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─────── Utility ─────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.hidden {
  display: none !important;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
}

/* ─────── Section Headers ─────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-header .section-title {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* ─────── Scroll Animations ─────── */
.reveal,
.reveal-right,
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  transform: translateX(40px);
}

.fade-in {
  transform: none;
}

.reveal.visible,
.reveal-right.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─────── Buttons ─────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.6);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─────── NAVBAR ─────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: rgba(5, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  flex-shrink: 0;
}

/* Both logos: same fixed height, constrained width, white on dark navbar */
.logo-img {
  height: 38px;
  width: 140px;
  /* same bounding box for both brands */
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  /* renders white on dark bg */
  opacity: 0.92;
  transition: opacity 0.2s;
}

.logo-img:hover {
  opacity: 1;
}

/* Country Toggle */
.country-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.3rem;
  margin: 0 auto;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 180, 216, 0.4);
}

.toggle-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.toggle-btn .flag {
  font-size: 1.1rem;
}

.toggle-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.2rem;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
}

.nav-links .nav-cta:hover {
  background: var(--primary-dark);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--primary);
}

.lang-btn:hover {
  color: #fff;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--primary) !important;
  border-radius: var(--radius-full) !important;
  text-align: center;
}

.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.5rem;
}

/* ─────── HERO ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-img.active {
  opacity: 1;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  background: linear-gradient(to bottom,
      rgba(5, 14, 26, 0.5) 0%,
      rgba(5, 14, 26, 0.3) 40%,
      rgba(5, 14, 26, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: calc(80px + 2rem) clamp(1rem, 4vw, 2.5rem) 6rem;
  text-align: center;
}

.eyebrow-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 180, 216, 0.2);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  max-width: 480px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  80% {
    top: 18px;
    opacity: 0;
  }
}

/* ─────── ABOUT ─────── */
.about {
  padding: var(--section-py) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--text);
}

.about-brands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--glass-border);
}

/* Brand card logos in 'About' section — show in color, override navbar filter */
.brand-card img {
  height: 32px;
  width: 120px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: none;
  /* show real brand colors */
}

.brand-card.brand-cr img {
  filter: none;
}

.brand-card div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-card strong {
  font-size: 0.9rem;
  color: var(--primary);
}

.brand-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* About Image Stack */
.about-img-stack {
  position: relative;
  height: 450px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.about-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 3px solid var(--bg2);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-glow);
}

.badge-icon {
  font-size: 1.4rem;
}

/* ─────── SELECTOR ─────── */
.selector {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.selector-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.selector-card {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}

.selector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

.selector-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Selector card logos — show full color, same bounding box for both brands */
.selector-logo {
  height: 52px;
  width: 180px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: none;
  /* override navbar invert — show real colors here */
}

.selector-logo.dark {
  filter: none;
  /* let the color PNG render naturally */
}

.selector-flag {
  position: absolute;
  top: -8px;
  right: -16px;
  font-size: 1.5rem;
}

.selector-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.selector-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.selector-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.selector-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.divider-circle {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* ─────── DESTINATIONS ─────── */
.destinations {
  padding: var(--section-py) 0;
  background: var(--bg2);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.dest-card-wide {
  grid-column: span 2;
}

.dest-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 14, 26, 0.6), transparent);
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
}

.dest-tag {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.dest-info {
  padding: 1.25rem 1.5rem;
}

.dest-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.dest-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.dest-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
}

.dest-link:hover {
  text-decoration: underline;
}

.dest-prices {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.price-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  background: rgba(0, 159, 227, 0.13);
  border: 1px solid rgba(0, 159, 227, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ─────── HOTELS ─────── */
.hotels {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hotel-card {
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.hotel-img-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hotel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hotel-card:hover .hotel-img-wrap img {
  transform: scale(1.08);
}

.hotel-info {
  padding: 1.25rem 1.5rem;
}

.hotel-stars {
  color: #FFD700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hotel-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hotel-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hotel-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hotel-tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─────── TESTIMONIALS ─────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
}

.stars {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─────── CONTACT ─────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  transition: transform 0.2s, border-color 0.2s;
}

.contact-channel:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.channel-icon.email {
  background: rgba(0, 180, 216, 0.15);
  color: var(--primary);
}

.channel-icon.website {
  background: rgba(244, 162, 97, 0.15);
  color: var(--gold);
}

.contact-channel div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-channel strong {
  font-size: 0.88rem;
}

.contact-channel span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form {
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group select option {
  background: var(--bg2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--accent);
}

/* ─────── FOOTER ─────── */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-langs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-langs button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-langs button:hover {
  color: var(--text);
}

.footer-langs span {
  color: rgba(255, 255, 255, 0.2);
}

/* ─────── Responsive ─────── */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card-wide {
    grid-column: span 2;
  }

  .hotels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .country-toggle .label {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .about-img-stack {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card-wide {
    grid-column: span 1;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .selector-cards {
    flex-direction: column;
  }

  .selector-divider {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .toggle-btn .label {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* ═══════════════════════════════════════════
   MUNDIAL 2026 — World Cup Section
═══════════════════════════════════════════ */

.worldcup {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #050e1c 0%, #0b1a0a 40%, #0a1505 100%);
  overflow: hidden;
}

.wc-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(250, 204, 21, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Navbar link especial Mundial */
.nav-wc {
  color: #4ade80 !important;
  font-weight: 600 !important;
  animation: wc-pulse 2s ease-in-out infinite;
}

@keyframes wc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.mobile-wc {
  color: #4ade80 !important;
  font-weight: 600 !important;
}

/* Eyebrow */
.wc-eyebrow {
  color: #4ade80 !important;
  border-color: rgba(74, 222, 128, 0.3) !important;
  background: rgba(74, 222, 128, 0.08) !important;
}

/* Subtitle */
.wc-subtitle {
  max-width: 650px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* ── Paquetes ── */
.wc-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.wc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.wc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.wc-card-featured {
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.05);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.1);
}

.wc-card-featured:hover {
  border-color: rgba(250, 204, 21, 0.7);
  box-shadow: 0 16px 40px rgba(250, 204, 21, 0.15);
}

.wc-card-vip {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.05);
}

.wc-card-vip:hover {
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 16px 40px rgba(167, 139, 250, 0.15);
}

/* Badge */
.wc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  width: fit-content;
}

.wc-badge-gold {
  background: rgba(250, 204, 21, 0.12);
  color: #fbbf24;
  border-color: rgba(250, 204, 21, 0.3);
}

.wc-badge-vip {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
  border-color: rgba(167, 139, 250, 0.3);
}

.wc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.wc-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* Features list */
.wc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wc-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.wc-check {
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.wc-warn {
  color: #fbbf24;
  flex-shrink: 0;
}

/* Price */
.wc-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wc-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.wc-card-featured .wc-amount {
  color: #fbbf24;
}

.wc-card-vip .wc-amount {
  color: #a78bfa;
}

.wc-pp {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Botones */
.wc-btn {
  text-align: center;
  margin-top: 0.25rem;
}

.wc-btn-vip {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(167, 139, 250, 0.4);
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  margin-top: 0.25rem;
}

.wc-btn-vip:hover {
  background: rgba(167, 139, 250, 0.12);
  border-color: #a78bfa;
}

/* ── Partidos ── */
.wc-matches {
  margin-top: 3.5rem;
}

.wc-matches-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}

.wc-matches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.wc-match {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s;
}

.wc-match:hover {
  border-color: rgba(74, 222, 128, 0.3);
}

.wc-match-hot {
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.04);
}

.wc-match-hot:hover {
  border-color: rgba(251, 146, 60, 0.6);
}

.wc-match-final {
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(250, 204, 21, 0.06);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.08);
}

.wc-match-final:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.15);
}

.wc-match-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.wc-match-final .wc-match-date {
  color: #fbbf24;
}

.wc-match-teams {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.wc-match-final .wc-match-teams {
  font-size: 1rem;
  font-weight: 800;
  color: #fbbf24;
}

.wc-match-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.wc-match-hot .wc-match-tag {
  color: #fb923c;
  font-weight: 600;
}

/* ── CTA Final ── */
.wc-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius-lg);
}

.wc-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.wc-cta strong {
  color: var(--text);
}

.wc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .wc-packages {
    grid-template-columns: repeat(2, 1fr);
  }
  .wc-matches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wc-packages {
    grid-template-columns: 1fr;
  }
  .wc-matches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==============================================
   MUNDIAL 2026 — World Cup Section
   ============================================== */

.worldcup {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #050e1c 0%, #0b1a0a 40%, #0a1505 100%);
  overflow: hidden;
}

.wc-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(250, 204, 21, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.nav-wc {
  color: #4ade80 !important;
  font-weight: 600 !important;
  animation: wc-pulse 2s ease-in-out infinite;
}
@keyframes wc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}
.mobile-wc {
  color: #4ade80 !important;
  font-weight: 600 !important;
}

.wc-eyebrow {
  color: #4ade80 !important;
  border-color: rgba(74,222,128,0.3) !important;
  background: rgba(74,222,128,0.08) !important;
}

.wc-subtitle {
  max-width: 650px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

/* --- Paquetes --- */
.wc-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.wc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.wc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,222,128,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.wc-card-featured {
  border-color: rgba(250,204,21,0.4);
  background: rgba(250,204,21,0.05);
  box-shadow: 0 0 30px rgba(250,204,21,0.1);
}
.wc-card-featured:hover {
  border-color: rgba(250,204,21,0.7);
  box-shadow: 0 16px 40px rgba(250,204,21,0.15);
}
.wc-card-vip {
  border-color: rgba(167,139,250,0.4);
  background: rgba(167,139,250,0.05);
}
.wc-card-vip:hover {
  border-color: rgba(167,139,250,0.7);
  box-shadow: 0 16px 40px rgba(167,139,250,0.15);
}

.wc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
  width: fit-content;
}
.wc-badge-gold {
  background: rgba(250,204,21,0.12);
  color: #fbbf24;
  border-color: rgba(250,204,21,0.3);
}
.wc-badge-vip {
  background: rgba(167,139,250,0.12);
  color: #a78bfa;
  border-color: rgba(167,139,250,0.3);
}

.wc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.wc-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.wc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wc-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.wc-check { color: #4ade80; font-weight: 700; flex-shrink: 0; }
.wc-warn  { color: #fbbf24; flex-shrink: 0; }

.wc-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wc-from {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wc-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}
.wc-card-featured .wc-amount { color: #fbbf24; }
.wc-card-vip .wc-amount     { color: #a78bfa; }
.wc-pp { font-size: 0.82rem; color: var(--text-muted); }

.wc-btn { text-align: center; margin-top: 0.25rem; }
.wc-btn-vip {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(167,139,250,0.4);
  color: #a78bfa;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  margin-top: 0.25rem;
}
.wc-btn-vip:hover {
  background: rgba(167,139,250,0.12);
  border-color: #a78bfa;
}

/* --- Partidos --- */
.wc-matches { margin-top: 3.5rem; }
.wc-matches-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}
.wc-matches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.wc-match {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.2s;
}
.wc-match:hover { border-color: rgba(74,222,128,0.3); }
.wc-match-hot {
  border-color: rgba(251,146,60,0.3);
  background: rgba(251,146,60,0.04);
}
.wc-match-hot:hover { border-color: rgba(251,146,60,0.6); }
.wc-match-final {
  border-color: rgba(250,204,21,0.5);
  background: rgba(250,204,21,0.06);
  box-shadow: 0 0 20px rgba(250,204,21,0.08);
}
.wc-match-final:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 30px rgba(250,204,21,0.15);
}
.wc-match-date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.wc-match-final .wc-match-date { color: #fbbf24; }
.wc-match-teams {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.wc-match-final .wc-match-teams {
  font-size: 1rem;
  font-weight: 800;
  color: #fbbf24;
}
.wc-match-tag { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.wc-match-hot .wc-match-tag { color: #fb923c; font-weight: 600; }

/* --- CTA Final --- */
.wc-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-lg);
}
.wc-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.wc-cta strong { color: var(--text); }
.wc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive Mundial --- */
@media (max-width: 1100px) {
  .wc-packages     { grid-template-columns: repeat(2, 1fr); }
  .wc-matches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wc-packages     { grid-template-columns: 1fr; }
  .wc-matches-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   TOURS APP — Sección México Inédito 7 Días
   ═══════════════════════════════════════════════════════════════ */

.tours-app {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #030f1a 0%, #051a26 40%, #030f1a 100%);
  overflow: hidden;
}

.tours-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(6,182,212,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(20,184,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tours-eyebrow {
  color: #06b6d4 !important;
  border-color: rgba(6,182,212,0.3) !important;
  background: rgba(6,182,212,0.08) !important;
}

/* ── Precio Banner ───────────────────────────────────────────── */
.tours-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, rgba(20,184,166,0.08) 100%);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.tours-price-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tours-price-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tours-price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  letter-spacing: -0.02em;
}

.tours-price-amount small {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(6,182,212,0.7);
}

.tours-price-detail {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.tours-price-cta {
  white-space: nowrap;
}

/* ── Ruta visual ─────────────────────────────────────────────── */
.tours-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 3rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tours-route-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tours-route-icon {
  font-size: 1.4rem;
}

.tours-route-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(6,182,212,0.4), rgba(20,184,166,0.4));
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* ── Días accordion ──────────────────────────────────────────── */
.tours-days {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tours-day {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.tours-day:hover {
  border-color: rgba(6,182,212,0.25);
  background: rgba(6,182,212,0.05);
}

.tours-day.open {
  border-color: rgba(6,182,212,0.4);
  background: rgba(6,182,212,0.07);
}

.tours-day-featured {
  border-color: rgba(6,182,212,0.2) !important;
  background: rgba(6,182,212,0.06) !important;
}

.tours-day-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}

.tours-day-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  line-height: 1;
  flex-shrink: 0;
}

.tours-day-num-featured {
  background: rgba(6,182,212,0.15) !important;
}

.tours-day-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

.tours-day-n {
  font-size: 1.6rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.tours-day-info {
  flex: 1;
  min-width: 0;
}

.tours-day-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.tours-day-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.tours-day-img-wrap {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.tours-day-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tours-day-arrow {
  font-size: 1rem;
  color: rgba(6,182,212,0.6);
  transition: transform 0.25s;
  flex-shrink: 0;
  user-select: none;
}

.tours-day.open .tours-day-arrow {
  transform: rotate(180deg);
}

.tours-day-body {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.tours-day.open .tours-day-body {
  display: block;
}

.tours-day-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tours-day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tours-tag {
  font-size: 0.75rem;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  color: rgba(6,182,212,0.9);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

/* ── Qué incluye ─────────────────────────────────────────────── */
.tours-includes {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}

.tours-includes-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.tours-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.tours-include-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.tours-include-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tours-noinclude {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* ── CTA Final ───────────────────────────────────────────────── */
.tours-cta {
  text-align: center;
}

.tours-cta-inner {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(20,184,166,0.08) 100%);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  max-width: 600px;
}

.tours-cta-inner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tours-cta-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.tours-btn {
  background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
  border-color: transparent !important;
}

.tours-btn:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490) !important;
  transform: translateY(-2px);
}

/* ── Navbar tours link ───────────────────────────────────────── */
.nav-tours,
.mobile-tours {
  color: #06b6d4 !important;
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tours-price-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .tours-price-cta {
    width: 100%;
    text-align: center;
  }

  .tours-price-amount {
    font-size: 2.2rem;
  }

  .tours-route-line {
    width: 20px;
  }

  .tours-day-img-wrap {
    display: none;
  }

  .tours-includes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tours-cta-inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tours-includes-grid {
    grid-template-columns: 1fr;
  }
}
  border-color: rgba(6,182,212,0.3) !important;
  background: rgba(6,182,212,0.08) !important;
}

.tours-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.12) 0%, rgba(20,184,166,0.08) 100%);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}
.tours-price-left { display: flex; flex-direction: column; gap: 0.4rem; }
.tours-price-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.tours-price-amount { font-size: 2.8rem; font-weight: 800; color: #06b6d4; line-height: 1; letter-spacing: -0.02em; }
.tours-price-amount small { font-size: 1.1rem; font-weight: 500; color: rgba(6,182,212,0.7); }
.tours-price-detail { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.tours-price-cta { white-space: nowrap; }

.tours-route {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 3rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tours-route-step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.tours-route-icon { font-size: 1.4rem; }
.tours-route-line { width: 40px; height: 1px; background: linear-gradient(90deg, rgba(6,182,212,0.4), rgba(20,184,166,0.4)); flex-shrink: 0; margin-bottom: 20px; }

.tours-days { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; }
.tours-day {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.tours-day:hover { border-color: rgba(6,182,212,0.25); background: rgba(6,182,212,0.05); }
.tours-day.open { border-color: rgba(6,182,212,0.4); background: rgba(6,182,212,0.07); }
.tours-day-featured { border-color: rgba(6,182,212,0.2) !important; background: rgba(6,182,212,0.06) !important; }
.tours-day-header { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; }
.tours-day-num { display: flex; flex-direction: column; align-items: center; min-width: 44px; padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.06); border-radius: 10px; line-height: 1; flex-shrink: 0; }
.tours-day-num-featured { background: rgba(6,182,212,0.15) !important; }
.tours-day-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.tours-day-n { font-size: 1.6rem; font-weight: 800; color: #06b6d4; line-height: 1; }
.tours-day-info { flex: 1; min-width: 0; }
.tours-day-title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 0.25rem; }
.tours-day-sub { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.tours-day-img-wrap { width: 80px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.tours-day-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.tours-day-arrow { font-size: 1rem; color: rgba(6,182,212,0.6); transition: transform 0.25s; flex-shrink: 0; user-select: none; }
.tours-day.open .tours-day-arrow { transform: rotate(180deg); }
.tours-day-body { display: none; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.tours-day.open .tours-day-body { display: block; }
.tours-day-body p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1rem; }
.tours-day-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tours-tag { font-size: 0.75rem; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); color: rgba(6,182,212,0.9); padding: 0.25rem 0.65rem; border-radius: 20px; }

.tours-includes { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 2rem 2.5rem; margin-bottom: 3rem; }
.tours-includes-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.tours-includes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.85rem; margin-bottom: 1rem; }
.tours-include-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.tours-include-icon { font-size: 1.1rem; flex-shrink: 0; }
.tours-noinclude { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }

.tours-cta { text-align: center; }
.tours-cta-inner { display: inline-block; background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(20,184,166,0.08) 100%); border: 1px solid rgba(6,182,212,0.25); border-radius: 24px; padding: 2.5rem 3rem; max-width: 600px; }
.tours-cta-inner h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.tours-cta-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.tours-btn { background: linear-gradient(135deg, #06b6d4, #0891b2) !important; border-color: transparent !important; }
.tours-btn:hover { background: linear-gradient(135deg, #0891b2, #0e7490) !important; transform: translateY(-2px); }

.nav-tours, .mobile-tours { color: #06b6d4 !important; font-weight: 600; }

@media (max-width: 768px) {
  .tours-price-banner { flex-direction: column; align-items: flex-start; }
  .tours-price-cta { width: 100%; text-align: center; }
  .tours-price-amount { font-size: 2.2rem; }
  .tours-route-line { width: 20px; }
  .tours-day-img-wrap { display: none; }
  .tours-includes-grid { grid-template-columns: 1fr 1fr; }
  .tours-cta-inner { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .tours-includes-grid { grid-template-columns: 1fr; }
}
