.intro-hero-rafting {
  position: relative;
  height: 90vh;
  overflow: hidden;
  font-family: var(--ff-titles);
}

.intro-hero-rafting picture,
.intro-hero-rafting img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.intro-content {
  color: var(--clr-claro);
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}

.intro-content h1 {
  font-size: 2rem;
  color: var(--clr-dorado);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.intro-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--azul-brillante);
  letter-spacing: 2px;
}

.btn-hero {
  background-color: var(--azul-primario);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  letter-spacing: 3px;
}

.btn-hero:hover {
  background-color: var(--clr-dorado);
  color: #000;
}

/* Animación */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para la sección Contacto Ríos Mexicanos */

.container-contacto {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  gap: 3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1f3d2e;
}

.meeting-point, .map-contact {
  flex: 1;
  background-color: #f5f9f7;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(31, 61, 46, 0.1);
}

.meeting-point h2, .map-contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0f3d2e;
}

.meeting-point iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(15, 61, 46, 0.15);
}

.map-contact p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.map-contact ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.map-contact ul li {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.map-contact ul li strong {
  color: #176c50;
}

.map-contact a {
  color: #176c50;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map-contact a:hover {
  color: #0f3d2e;
  text-decoration: underline;
}

/* Responsive para tablets y móviles */
@media (max-width: 900px) {
  .container-contacto {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  
  .meeting-point, .map-contact {
    padding: 1.5rem;
  }
  
  .meeting-point iframe {
    height: 250px;
  }
  
  .meeting-point h2, .map-contact h2 {
    font-size: 1.7rem;
  }
}
