* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #222;
}

h1, h2 {
  font-weight: 800;
}

h2 span, h1 span {
  color: #ff0000;
}

.hero-section {
  background: linear-gradient(to right,  #fde635, #db8848, #fd3535);
  color: white;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.search-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: black;
}

.search-info span {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-search {
  background: #ff6a00;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-search:hover {
  background: #e05200;
}

.hero-img {
  max-width: 600px;
  height: auto;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
    color: #ffffff; /* 👈 Color blanco en celulares */
  }

  .hero-section p {
    font-size: 1rem;
  }

  .btn-search {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  .hero-img {
    display: none;
  }
}



/* SLIDER */
.carousel-destinos {
  padding: 60px 20px;
  background: linear-gradient(to top, #ffffff 70%, #f8f9fa 100%);
  text-align: center;
}

.carousel-title {
  font-size: 2rem;
  color: #0b1e15;
  font-weight: bold;
  margin-bottom: 40px;
}

.carousel-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.destino-card {
  min-width: 220px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.destino-card:hover {
  transform: scale(1.05);
}

.destino-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  color: white;
  text-align: left;
  background: linear-gradient(to top, rgba(243, 150, 0, 0.6), transparent);
  width: 100%;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.destino-info h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.destino-info p {
  font-size: 0.95rem;
  margin: 5px 0 0;
  color: #f8f9fa;
}

.btn-view-all-container {
  margin-top: 40px;
}

.btn-view-all {
  background: #ffa500;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.btn-view-all:hover {
  background: #e69700;
}

/* historias */
.stories {
  display: flex;
  align-items: center;
  justify-content: center; /* Centra horizontalmente */
  padding: 60px 20px;
  background: #f2f2f2;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center; /* Centra el texto */
  flex-direction: column; /* Asegura el orden vertical */
}

.stories-content {
  max-width: 600px;
}

.stories-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.stories-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center; /* Centra los elementos */
  align-items: stretch;    /* Hace que todos los divs tengan la misma altura */
}

.stats div {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1 1 150px; /* Se adaptan al espacio disponible con un ancho mínimo */
  min-width: 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats strong {
  font-size: 1.5rem;
  color: #ff6a00;
}


/* servicios */

.services-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-info {
  padding: 15px;
  text-align: left;
}

.card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.card-info p {
  font-size: 0.9rem;
  color: #666;
}

.card-footer span {
  color: #ff6a00;
  font-weight: bold;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: #320101;
  color: white;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-final p {
  margin-bottom: 30px;
}

.btn-explore {
  background: #ff6a00;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-explore:hover {
  background: #e05800;
}

/* ANIMACIONES */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .services-container,
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .swiper-slide img {
    height: 200px;
  }
}
