.finalidad-section {
    background: #f5f9ff;
    padding: 4rem 2rem;
  }
  .finalidad-title {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
  }
  .finalidad-text {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  .finalidad-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  .finalidad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .finalidad-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
  }
  .finalidad-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .finalidad-card p {
    font-size: 0.95rem;
    color: #555;
  }





  /* Carrusel full pantalla */
#heroCarousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Textos centrados */
.carousel-caption {
  bottom: 20%;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px #000;
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 5px #000;
}

/* Botón */
.carousel-caption .btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
}

/* Responsivo en móviles */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 10%;
    padding: 0 10px;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

  