/* ============================================================
   EduNexusLingo — Luxury Premium Design
   Paleta: Midnight Navy + Champagne Gold + Ivory White
   ============================================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A6F2E;
  --navy:        #0B1120;
  --navy-mid:    #131D30;
  --navy-light:  #1C2B47;
  --ivory:       #F8F4EE;
  --ivory-dark:  #EDE8DF;
  --white:       #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A4A6A;
  --text-light:  #9A9AB0;
  --accent:      #C9A84C;
  --green-wa:    #25D366;
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.45);
  --radius:      14px;
  --radius-lg:   24px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

p, a, button, input, select, textarea, label, li {
  font-family: 'Lato', 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}

/* ── Gold Divider ── */
.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(11, 17, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: rgba(248,244,238,0.85);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover { color: var(--gold-light); }
nav a:hover::after { width: 100%; }

.btn-contact {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  border: 1px solid var(--gold-light);
}

.btn-contact:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-contact::after { display: none !important; }

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 30px;
}

.lang-flag {
  width: 22px;
  height: 15px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  border-radius: 2px;
  object-fit: cover;
  border: 1px solid transparent;
}

.lang-flag:hover,
.lang-flag.active {
  opacity: 1;
  transform: scale(1.25);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* WhatsApp Header */
.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-wa);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 30px;
  background: rgba(37,211,102,0.07);
}

.whatsapp-header:hover {
  background: rgba(37,211,102,0.15);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(37,211,102,0.2);
}

.whatsapp-header img {
  width: 18px;
  height: 18px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  header { padding: 0.85rem 1.5rem; }
  nav { gap: 1.2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav {
    display: none;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: rgba(11,17,32,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 999;
  }
  nav.open { display: flex; }
  nav a { font-size: 1rem; }
  .lang-selector { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  margin-top: 75px;
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(11,17,32,0.88) 0%, rgba(11,17,32,0.55) 60%, rgba(11,17,32,0.3) 100%),
    url('../img/Amigos.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 8%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--ivory), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px;
  background: rgba(201,168,76,0.08);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(248,244,238,0.85);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(248,244,238,0.6);
}

.btn-secondary:hover {
  background: rgba(248,244,238,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
}

.section-header h2.light { color: var(--ivory); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 1rem auto 0;
}

.section-header p.light { color: rgba(248,244,238,0.75); }

/* ============================================================
   DESTINOS DESTACADOS
   ============================================================ */
#destinos {
  padding: 6rem 5%;
  background: var(--ivory);
}

.destinos-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.destino-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-dark);
  cursor: pointer;
  transition: var(--transition);
}

.destino-item:hover { transform: scale(1.02); }

.destino-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.destino-item:hover img { transform: scale(1.06); }

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.9) 0%, rgba(11,17,32,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
}

.destino-overlay h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.destino-overlay .dest-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  background: rgba(201,168,76,0.1);
}

.destino-overlay p {
  font-size: 0.95rem;
  color: rgba(248,244,238,0.85);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .destinos-grid-container { grid-template-columns: 1fr; }
  .destino-overlay h3 { font-size: 1.6rem; }
}

/* ============================================================
   IMAGINA TU VIDA
   ============================================================ */
.imagina-section {
  padding: 6rem 5%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.imagina-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.imagina-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.imagina-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.imagina-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.imagina-card:hover::before { transform: scaleX(1); }

.imagina-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.imagina-card .card-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.imagina-card h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.imagina-card p {
  color: rgba(248,244,238,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CAROUSEL SECTION
   ============================================================ */
.carousel-section {
  padding: 6rem 5%;
  background: var(--ivory-dark);
}

.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.carousel-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  min-width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.5) 0%, transparent 60%);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,17,32,0.7);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.carousel-button:hover {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.carousel-button.prev { left: 1.5rem; }
.carousel-button.next { right: 1.5rem; }

.carousel-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.3);
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}

/* ============================================================
   SCHOOL ICONS CAROUSEL
   ============================================================ */
.school-icons-section {
  padding: 5rem 5%;
  background: var(--navy);
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.school-icons-section .section-header h2 {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.school-icons-carousel {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 45s linear infinite;
  width: max-content;
  align-items: center;
}

.school-icons-carousel:hover { animation-play-state: paused; }

.school-icon-item {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.school-icon-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2);
}

.school-icon-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Eliminamos los filtros que hacían que se viera gris/bloque */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRECIOS
   ============================================================ */
.precios {
  padding: 6rem 5%;
  background: var(--ivory);
  position: relative;
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.precio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}

.precio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.precio-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}

.precio-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.precio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.4);
}

.precio-card.featured:hover { transform: scale(1.04) translateY(-10px); }

.precio-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.precio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.precio-card.featured h3 { color: var(--gold-light); }

.precio {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.precio span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
}

.precio-card ul {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.precio-card li {
  padding: 0.6rem 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.precio-card.featured li { color: rgba(248,244,238,0.8); border-color: rgba(255,255,255,0.08); }

.precio-card li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   LOGOS CAROUSEL (Colegios Irlanda)
   ============================================================ */
.logos-section {
  padding: 5rem 5%;
  background: var(--ivory-dark);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.logos-carousel {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 50s linear infinite reverse;
  width: max-content;
  align-items: center;
}

.logos-carousel:hover { animation-play-state: paused; }

/* Reutilizamos el estilo de item para coherencia */
.logos-section .school-icon-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.logos-section .school-icon-item:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.15);
}

.logos-section .school-icon-item img {
  filter: none;
}

/* ============================================================
   TU CAMINO
   ============================================================ */
.tu-camino-section {
  padding: 6rem 5%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.tu-camino-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tu-camino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tu-camino-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.tu-camino-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tu-camino-card:hover::after { transform: scaleX(1); }

.tu-camino-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.tu-camino-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
}

.tu-camino-card h3 {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.tu-camino-card p {
  color: rgba(248,244,238,0.65);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================================
   GALERÍA DESTINOS
   ============================================================ */
.galeria-destinos {
  padding: 6rem 5%;
  background: var(--ivory);
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.destino-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.1);
}

.destino-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.4);
}

.destino-image {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
}

.destino-card h3 {
  padding: 1rem 1.2rem 0.4rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.destino-card p {
  padding: 0 1.2rem 1.2rem;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  padding: 6rem 5%;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.contacto::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.form-container {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--ivory);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248,244,238,0.35);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--ivory);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.footer-brand .logo-text {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-brand p {
  color: rgba(248,244,238,0.55);
  font-size: 0.9rem;
  max-width: 360px;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(201,168,76,0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(248,244,238,0.35);
  font-size: 0.82rem;
}

.footer-locations {
  color: rgba(248,244,238,0.35);
  font-size: 0.78rem;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-locations { text-align: center; }
}

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.chat-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(201,168,76,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(201,168,76,0.6);
}

.chat-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  display: none;
  flex-direction: column;
  max-height: 500px;
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

.chat-popup.active { display: flex; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  padding: 1rem 1.2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  max-height: 300px;
}

.chat-message {
  margin-bottom: 0.7rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-message.bot {
  background: rgba(255,255,255,0.07);
  color: rgba(248,244,238,0.85);
  border: 1px solid rgba(201,168,76,0.1);
}

.chat-message.user {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  text-align: right;
  font-weight: 600;
}

.chat-input-area {
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
}

.chat-input {
  flex: 1;
  padding: 0.5rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: var(--ivory);
  outline: none;
}

.chat-input:focus { border-color: var(--gold); }

.chat-send {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.chat-send:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

/* ============================================================
   FLYING CERTS & SPARKLES
   ============================================================ */
.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  animation: floatUp 18s infinite;
  opacity: 0;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(1); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(60px) scale(0); opacity: 0; }
}

.flying-certs {
  position: fixed;
  top: -100px;
  left: -100px;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flying-cert-img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.6));
}

.star-trail {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  animation: starFade 0.8s forwards;
}

@keyframes starFade {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 5%; min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .precios-grid { grid-template-columns: 1fr; }
  .precio-card.featured { transform: scale(1); }
  .form-container { padding: 2rem 1.5rem; }
  section { padding-left: 4% !important; padding-right: 4% !important; }
}
