/* ===================== */
/* RESET */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #2f4a58;
  color: white;
  overflow-x: hidden;
}

/* ===================== */
/* TIPOGRAFÍA */
/* ===================== */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* ===================== */
/* NAVBAR */
/* ===================== */
nav {
  position: fixed;
  width: 100%;
  background: rgba(34, 56, 68, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 1000;
}

nav .logo {
  font-size: 18px;
  letter-spacing: 3px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.7;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero h1 {
  font-size: 85px;
  letter-spacing: 8px;
}

.hero p {
  font-size: 22px;
  margin: 25px 0;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: white;
  color: #2f4a58;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #e6e6e6;
}

/* ===================== */
/* PROPUESTA */
/* ===================== */
.propuesta-full {
  width: 100%;
  background: #1f3642;
  padding: 140px 20px;
  display: flex;
  justify-content: center;
}

.propuesta-contenido {
  max-width: 1100px;
  text-align: center;
}

.propuesta-full h2 {
  font-size: 52px;
  margin-bottom: 30px;
}

.intro {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 60px;
  opacity: 0.9;
}

.proposito h3 {
  font-size: 32px;
  margin-bottom: 25px;
}

.proposito p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 70px;
  opacity: 0.9;
}

.servicios-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.servicios-lista div {
  background: rgba(255,255,255,0.08);
  padding: 22px;
  border-radius: 12px;
  transition: 0.4s;
}

.servicios-lista div:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
}

/* ===================== */
/* DESTINOS SLIDER */
/* ===================== */
.destinos-slider {
  background: #2f4a58;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.destinos-slider h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.destinos-texto {
  max-width: 850px;
  margin: 0 auto 70px auto;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
}

.slider {
  height: 380px;
  overflow: hidden;
}

.slide-track {
  display: flex;
  animation: scroll 25s linear infinite;
}

.slide {
  min-width: 480px;
  height: 380px;
  padding: 14px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s;
}

.slide img:hover {
  transform: scale(1.06);
}

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

/* ===================== */
/* NOSOTROS */
/* ===================== */
.nosotros-clean {
  background: #223844;
  padding: 160px 20px;
  text-align: center;
}

.nosotros-texto {
  max-width: 850px;
  margin: 0 auto 100px auto;
}

.nosotros-clean h2 {
  font-size: 56px;
  margin-bottom: 40px;
}

.nosotros-clean p {
  font-size: 20px;
  line-height: 1.9;
  opacity: 0.9;
}

.nosotros-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.nosotros-gallery img {
  max-width: 350px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  transition: 0.4s ease;
}

.nosotros-gallery img:hover {
  transform: translateY(-8px);
}

/* ===================== */
/* CONTACTO */
/* ===================== */
.contacto-section {
  padding: 120px 20px;
  text-align: center;
  background: #2f4a58;
}

.contacto-section h2 {
  font-size: 50px;
  margin-bottom: 50px;
}

.contacto-botones {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-contacto {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  color: white;
  transition: 0.3s ease;
}

.icon {
  width: 22px;
  height: 22px;
}

.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1ebe5d; }
.instagram-btn { background: #E1306C; }
.instagram-btn:hover { background: #c2275c; }

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav .logo {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  nav ul {
    width: 100%;
    justify-content: space-between;
    margin-top: 5px;
  }

  nav ul li {
    margin-left: 0;
  }

  nav a {
    font-size: 12px;
  }

  /* HERO */
  .hero h1 {
    font-size: 38px;
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 16px;
  }

  /* SERVICIOS */
  .servicios-lista {
    grid-template-columns: 1fr;
  }

  /* SLIDER (se mueve solo también en mobile) */
  .slide {
    min-width: 260px;
    height: 200px;
  }

  .slider {
    height: 220px;
  }

  /* NOSOTROS */
  .nosotros-gallery {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nosotros-gallery img {
    width: 260px;
    max-width: 260px;
  }

  /* CONTACTO */
  .contacto-botones {
    flex-direction: column;
    gap: 20px;
  }
}