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

:root {
  --azul:        #0d1b3e;
  --azul-med:    #1a2f5e;
  --dorado:      #c9a96e;
  --dorado-claro:#e2c99a;
  --blanco:      #ffffff;
  --gris-claro:  #f4f1eb;
  --gris:        #666;
  --oscuro:      #0a1628;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--gris-claro);
  color: var(--azul);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(13, 27, 62, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
  background: var(--azul);
  outline: 1px solid rgba(201,169,110,0.3);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color .2s;
}
nav ul a:hover { color: var(--dorado); }

/* ── HERO ── */
@keyframes heroShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes morph1 {
  0%, 100% { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: translate(0, 0); }
  50%       { clip-path: polygon(44% 8%, 0% 100%, 100% 92%); transform: translate(-18px, 22px); }
}
@keyframes morph2 {
  0%, 100% { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: translate(0, 0) rotate(0deg); }
  50%       { clip-path: polygon(58% 12%, 4% 96%, 92% 88%); transform: translate(12px, -18px) rotate(-6deg); }
}
@keyframes morph3 {
  0%, 100% { clip-path: polygon(50% 0%, 0% 100%, 100% 100%); transform: translate(0, 0) scale(1); }
  50%       { clip-path: polygon(38% 12%, 0% 100%, 100% 100%); transform: translate(6px, -12px) scale(1.06); }
}
@keyframes morph4 {
  0%, 100% { clip-path: polygon(0% 100%, 100% 0%, 100% 100%); transform: translate(0, 0); }
  50%       { clip-path: polygon(8% 100%, 100% 8%, 88% 100%); transform: translate(22px, 12px); }
}
.hero {
  min-height: 100vh;
  background: #060e1a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
}
.hero > *:not(.hero-spline):not(.hero-overlay) { position: relative; z-index: 3; }
.hero-spline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: none;
  pointer-events: none;
  filter: hue-rotate(200deg) saturate(0.85) brightness(0.7);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), calc(100% - 240px) calc(100% - 52px), calc(100% - 240px) 100%, 0 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 55%,
    rgba(6,14,26,0.4) 80%,
    rgba(6,14,26,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 58%, rgba(6,14,26,0.4) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.hero .btn { pointer-events: auto; }
/* Elimina controles de Spline dondequiera que aparezcan */
input[type="range"]            { display: none !important; }
a[href*="spline.design"]       { display: none !important; }
[class*="variable"]            { display: none !important; }
[class*="Variable"]            { display: none !important; }
[class*="spline-ui"]           { display: none !important; }
[class*="SplineUI"]            { display: none !important; }
[class*="controls"]            { display: none !important; }
[class*="watermark"]           { display: none !important; }
.hero > div:not(.hero-overlay):not(.hero-btns):not(.hero-accent):not(.hero-spline-cover) { display: none !important; }
.hero-spline-cover {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 48px;
  background: #060e1a;
  z-index: 99999;
  pointer-events: none;
}
body > div:not(#app):not([class]) { display: none !important; }

/* Scroll indicator */
@keyframes scrollDrop {
  0%   { top: -40%; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}
.hero-scroll {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity .2s;
  pointer-events: auto;
  margin-top: 2.5rem;
}
.hero-scroll:hover { opacity: 0.7; }
.hero-scroll-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dorado);
}
.hero-scroll-line {
  width: 2px;
  height: 80px;
  background: rgba(201,169,110,0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--dorado));
  animation: scrollDrop 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px var(--dorado);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.shape { position: absolute; }
.s1 {
  width: 700px; height: 700px;
  bottom: -220px; left: -200px;
  background: linear-gradient(135deg, rgba(201,169,110,0.13), rgba(201,169,110,0.03));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: morph1 10s ease-in-out infinite;
}
.s2 {
  width: 480px; height: 480px;
  top: -120px; right: -120px;
  background: rgba(26,47,94,0.55);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: morph2 13s ease-in-out infinite;
}
.s3 {
  width: 300px; height: 300px;
  bottom: 60px; right: 12%;
  background: rgba(226,201,154,0.09);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: morph3 7s ease-in-out infinite;
}
.s4 {
  width: 520px; height: 360px;
  bottom: 0; right: -60px;
  background: rgba(13,27,62,0.45);
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  animation: morph4 15s ease-in-out infinite;
}
.hero-badge {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 13vw, 10rem);
  letter-spacing: -3px;
  line-height: 1;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
}
.hero-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-gradient {
  background: linear-gradient(90deg, #fff5e0 0%, #f0d090 55%, #c9a96e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-accent {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  margin: 2rem auto;
  border-radius: 2px;
}
.hero p {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  line-height: 1.65;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-primary { background: var(--dorado); color: var(--azul); }
.btn-primary:hover { background: var(--dorado-claro); }
.btn-outline { background: transparent; color: var(--blanco); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--dorado); color: var(--dorado); }

/* ── SECTION BASE ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--azul);
}
.section-sub {
  margin-top: 0.75rem;
  color: var(--gris);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.65;
}

/* ── SOBRE NOSOTROS ── */
#nosotros { background: var(--blanco); }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nosotros-img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(13,27,62,0.15);
}
.nosotros-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(13,27,62,0.1);
}
.stat span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--dorado);
}
.stat p { font-size: 0.82rem; color: var(--gris); margin-top: 0.15rem; }

/* ── SERVICIOS ── */
#servicios { background: var(--gris-claro); }
.servicios-header { text-align: center; margin-bottom: 3rem; }
.servicios-header .section-sub { margin: 0.75rem auto 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--blanco);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(13,27,62,0.07);
  border-top: 3px solid var(--dorado);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,62,0.13); }
a.card { color: inherit; }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--azul);
}
.card p { font-size: 0.92rem; color: var(--gris); line-height: 1.6; }

/* ── PRÓXIMOS VIAJES ── */
#viaje { background: var(--azul); color: var(--blanco); }
#viaje .section-tag { color: var(--dorado); }
#viaje .section-title { color: var(--blanco); }
.viaje-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.viaje-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}
.viaje-detail .icon { font-size: 1.2rem; }
.proximos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.proximo-card {
  background: rgba(255,255,255,0.06);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--dorado);
  transition: transform .2s, box-shadow .2s;
}
.proximo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.proximo-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.proximo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.proximo-card:hover .proximo-card-img img { transform: scale(1.03); }
.proximo-card-body { padding: 1.75rem; }
.proximo-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blanco);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.proximo-card-btns {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

/* ── EXPERIENCIAS ── */
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.exp-card {
  background: var(--blanco);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 12px rgba(13,27,62,0.07);
  border-top: 3px solid var(--dorado);
  transition: transform .2s, box-shadow .2s;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(13,27,62,0.13);
}
.exp-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(13,27,62,0.06);
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-body { padding: 1rem 1.25rem 1.25rem; }
.exp-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul);
  margin-bottom: 0.45rem;
}
.exp-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gris);
  gap: 0.5rem;
}
.exp-card-fecha {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--dorado);
  white-space: nowrap;
}

/* ── CONTACTO ── */
#instagram { background: var(--blanco); text-align: center; }
.contacto-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blanco);
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.ig-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,0.35); }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blanco);
  background: #25d366;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.wa-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ── FOOTER ── */
footer {
  background: var(--oscuro);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.82rem;
}
footer .footer-logo { height: 36px; margin-bottom: 0.75rem; opacity: 0.75; }
footer a { color: var(--dorado); text-decoration: none; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.activo { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 0.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.foto-slot img { cursor: zoom-in; }
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--blanco);
  font-size: 2rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background .2s;
  line-height: 1;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.3); }
.lightbox-btn.prev { left: 1.5rem; }
.lightbox-btn.next { right: 1.5rem; }

/* ── VIDEOS SECTION ── */
.videos-section {
  background: var(--azul);
  padding: 4rem 1.5rem;
}
.videos-section .section-tag { background: rgba(201,169,110,0.15); color: var(--dorado); }
.videos-section .section-title { color: var(--blanco); }
.videos-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.video-slot {
  flex: 0 0 min(260px, calc((100% - 4.5rem) / 4));
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(201,169,110,0.3);
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.video-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-slot .video-icon { font-size: 2rem; }
.video-slot { position: relative; cursor: pointer; }
.video-slot .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.25);
  transition: opacity .2s;
  border-radius: 1rem;
}
.video-slot.playing .play-btn { opacity: 0; }
.video-slot.playing:hover .play-btn { opacity: 1; }
@media (max-width: 768px) {
  .videos-grid { justify-content: flex-start; }
  .video-slot { flex: 0 0 45vw; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 2rem; }
  .proximos-grid { grid-template-columns: 1fr; }
  .nosotros-img { order: -1; }
  .stats { gap: 1.5rem; }
  .hero h1 { letter-spacing: -1px; }
}
