/* --- Fuentes (importadas en header, pero definidas aquí por si acaso) --- */
.page-header-costa h1,
.card-title,
.section-title {
  font-family: "Montserrat", sans-serif;
}

/* --- Encabezado de Página (Hero) --- */
.page-header-costa {
  /* Imagen de fondo de placeholder */
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1920x1080/D2B48C/FFFFFF?text=Playa+Máncora+(Costa)");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Efecto Parallax */
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-header-costa h1 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* --- Título de Sección --- */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: #0d6efd;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Tarjetas de Destino --- */
.card-title {
  font-weight: 700;
  color: #34495e;
}

.destination-card-hover {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.destination-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}
