/* ======================
   BASE
====================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #e0e0e0;
  scroll-behavior: smooth;
}

section {
  min-height: 100vh;
  padding: 90px 20px;
  text-align: center;
}

/* ======================
   HEADER / NAV
====================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1f1f1f;
  z-index: 3000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #43a047;
  font-size: 1.4em;
  font-weight: 600;
}

/* NAV DESKTOP */
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: #43a047;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ======================
   HERO / HOME
====================== */
#home {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  text-align: center;
  z-index: 1000;
}

.hero-text h1,
.hero-text p {
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* PROMO */
.promo-text {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
}

.promo-text h2 {
  font-size: 1.5em;
  color: #43a047;
  margin-bottom: 10px;
}

.promo-text p {
  font-size: 1.1em;
  margin: 5px 0;
}

/* ======================
   CABANAS
====================== */
#cabanas {
  background: #1f1f1f;
}

.cabanas-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.cabana-card {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cabana-card h3 {
  color: #43a047;
}

.cabana-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}

/* BOTONES */
.btn-reservar,
.btn-galeria {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border-radius: 5px;
  font-size: 1.05em;
  text-decoration: none;
  cursor: pointer;
}

.btn-reservar {
  background: #43a047;
  color: #fff;
}

.btn-reservar:hover {
  background: #2e7d32;
}

.btn-galeria {
  background: #2196f3;
  color: #fff;
  border: none;
}

.btn-galeria:hover {
  background: #1976d2;
}

/* ======================
   UBICACION
====================== */
#ubicacion {
  background: #121212;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.direccion {
  background: rgba(0,0,0,0.6);
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
}

.direccion strong {
  color: #43a047;
}

/* ======================
   CALENDARIO
====================== */
#calendario {
  background: #1f1f1f;
}

#calendar {
  max-width: 900px;
  margin: auto;
  background: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* ======================
   MODAL GALERIA
====================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 4000;
}

.modal-content {
  width: 90%;
  height: 90%;
  margin: 2% auto;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 4100;
}

.gallerySwiper,
.gallerySwiper img {
  width: 100%;
  height: 100%;
}

.gallerySwiper img {
  object-fit: contain;
}

/* ======================
   WHATSAPP
====================== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  font-size: 28px;
  z-index: 3000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.whatsapp-button:hover {
  background: #20ba5a;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {

  section {
    padding: 80px 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #1f1f1f;
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1.1em;
  }

  #map {
    height: 300px;
  }
}
.btn-reservar,
.btn-galeria {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 1.05em;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

/* Reset específico para button */
.btn-galeria {
  border: none;
  background: #2196f3;
  color: #fff;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
}

.btn-galeria:hover {
  background: #1976d2;
}
/* ======================
   BENEFICIOS
====================== */
#beneficios {
  background: #ffffff;
  color: #222;
  text-align: center;
}

#beneficios h2 {
  color: #5fa800;
  font-size: 2.3em;
  margin-bottom: 50px;
}

.beneficios-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.beneficio-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card i {
  font-size: 42px;
  color: #5fa800;
  margin-bottom: 15px;
}

.beneficio-card p {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {

  #beneficios h2 {
    font-size: 1.8em;
  }

  .beneficio-card {
    padding: 25px 15px;
  }

  .beneficio-card i {
    font-size: 36px;
  }
}
.btn-volver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #43a047 !important;     /* Forzamos el color verde */
  text-decoration: none !important; /* Quitamos subrayado */
  font-weight: 500;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}


