body {
  font-family: 'Segoe UI', sans-serif;
}

.text-pink {
  color: #d63384;
}

.btn-pink {
  background-color: #e57c99;
  color: white;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.btn-pink:hover {
  background-color: #c55b77;
}

.actividad-card {
  background: #fff0f5;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.actividad-card:hover {
  transform: translateY(-5px);
}

.icono {
  font-size: 40px;
  color: #e57c99;
}

.galeria-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}
.galeria-img:hover {
  transform: scale(1.03);
}
.rincones-section {
  padding: 60px 20px;
  background-color: #fffef9;
}

.rincones-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #c0397e;
  margin-bottom: 40px;
}

.rincones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.rincon-card {
  background-color: #fff0f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rincon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.rincon-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rincon-card h5 {
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #d63384;
  font-family: 'Poppins', sans-serif;
}
.presentacion-inicial {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff0f5, #fff9fb);
  font-family: 'Poppins', sans-serif;
  color: #444;
}

.titulo-inicial {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.titulo-inicial span {
  color: #e83e8c;
  font-weight: bold;
}

.descripcion-inicial {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 20px;
  text-align: justify;
  color: #333;
}
.carousel-item img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center;
}

/* Ajuste específico para pantallas pequeñas */
@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh;
    object-fit: contain;
    object-position: center center;
  }

  .portada-texto {
    display: none; /* Opcional: oculta los botones en móvil si se ven mal */
  }
}
