/* - Tubing Alto Amacuzac - Estilo CSS - */
/* - Este archivo contiene los estilos para la página de rafting Amacuzac, incluyendo la sección de héroe, detalles de actividades, precios y paquetes. */

/*- Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%);
}

/* Estilo del textbox */
.hero-textbox {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.hero-textbox h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--azul-brillante);
  letter-spacing: 3px;
}

.hero-textbox p {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 2px;
}
.hero-textbox span {
  color: var(--clr-naranja);
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 2px;
}

/* Animación */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* - Sección de descripción de actividades - */
.container-desc {
  background-color: #f8f9f8; /* fondo claro pero no blanco puro */
  color: #1e1e1e; /* texto oscuro para buena legibilidad */
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-family: 'Segoe UI', sans-serif;
}

.act-desc-textbox1,
.act-desc-textbox2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.desc-box {
  flex: 1 1 45%;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.desc-box:hover {
  transform: translateY(-4px);
}

.desc-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #004f4a; /* color institucional suave */
}

.desc-box p,
.desc-box li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.desc-box ul {
  padding-left: 1.2rem;
  list-style: disc;
}

/* Responsivo */
@media (max-width: 768px) {
  .desc-box {
    flex: 1 1 100%;
  }
}

/* - Sección de precios */
.precios-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.precios-section h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--azul-Secundario);
}

.precio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.precio-card {
  background: #f2f7f5;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.precio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.precio-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--azul-Secundario);
}

.precio-card .detalle {
  font-size: 1rem;
  color: var(--azul-Secundario);
  margin-bottom: 1rem;
}

.precio-card .precio {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--azul-Secundario);
}

/* Card destacada */
.precio-card.destacado {
  background: rgba(57, 194, 201, 0.2);
  border: 2px solid #70c29b;
}

/* Botón */
.btn-reserva {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: var(--azul-Secundario);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2rem;
  transition: background 0.3s ease;
}

.btn-reserva:hover {
  background: var(--clr-naranja);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Botón de WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
}


/* - Sección de paquetes */
.container-packages {
  padding: 4rem 2rem;
  background: #f7fefc;
  text-align: center;
}

.container-packages h2 {
  font-size: 2rem;
  color: #1c3a2e;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.container-packages p {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: #4a6359;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 1.5px;

}

.container-packages span {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #267a5a;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.packages-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.packages-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.packages-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem 1.25rem;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--clr-naranja);
}

.card-content p {
  font-size: 0.95rem;
  color: var(--azul-Secundario);
}

.card-content b {
  color: var(--clr-naranja);
  font-size: 1.2rem;
}

/* Animación sutil de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}