body {
  scroll-behavior: smooth;
}
footer a {
  text-decoration: none;
}

/* Estilo para reducir el tamaño de las imágenes del carrusel */
.carousel-item img {
  max-height: 400px; 
  object-fit: cover;
  width: 100%;
}

/* Contenedor del texto en el carrusel */
.carousel-caption {
    /* Fondo oscuro semitransparente para resaltar el texto */
    background: rgba(0, 0, 0, 0.5); 
    border-radius: 15px;
    padding: 20px;
    bottom: 30px; /* Ajusta la distancia desde abajo */
}

/* Estilo del título (h5) */
.carousel-caption h5 {
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

/* Estilo del párrafo (p) */
.carousel-caption p {
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 10px;
        bottom: 15px;
    }
    
    .carousel-caption h5 {
        font-size: 1.1rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
    }
}

footer hr {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

@media (max-width: 768px) {
  .carousel-item img {
    max-height: 250px;
  }
}

link[rel="icon"] {
        border-radius: 50%;
    }
