.carousel-item img {
    width: 50%; /* Hacemos las imágenes más pequeñas */
    margin: 0 auto; /* Centramos las imágenes */
    border-radius: 20px; /* Bordes redondeados */
    transition: transform 0.5s ease, box-shadow 0.3s ease; /* Transición suave */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Efecto al pasar el cursor (hover) */
.carousel-item img:hover {
    transform: scale(1.05); /* Hace un pequeño zoom */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Aumenta la sombra */
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Sombra al texto */
}

.carousel-caption p {
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Sombra al texto */
}


.customer-container-comments {
    display: flex;
    justify-content: space-between;
}


.customer-container-comments .item {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    gap: normal;

}

.customer-container-comments .item {

}


.customer-container-comments .user {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}



footer a i {
    font-size: 20px;
    transition: color 0.3s ease;
}

footer a:hover i {
    color: #007bff; /* Color al pasar el ratón (azul) */
}

footer a {
    text-decoration: none;
}

footer {
    padding-left: 20px;
    padding-right: 20px;
}


/* Sticky Footer */
footer {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    z-index: 100;
    padding-top: 15px; /* Ajuste de padding para un grosor similar a la barra de navegación */
    padding-bottom: 0;
    margin-top: 30px;
    text-align: center;

}

.footer-flex {
    display: flex;
    justify-content: space-around;
}




@media (max-width: 1024px) {

    footer {
        position: initial;
    }

    .container, .container-md, .container-sm {
        max-width: 720px;
    }

    .footer-flex {
        display: block;
        justify-content: space-around;
    }

    .contact-us, .our-sites {
        margin-top: 15px;
    }


    .copyright {
        margin-bottom: 0!important;
    }
    .copyright p {
        margin-bottom: 0!important;
    }
}

@media (max-width: 992px) {

}


.follow-us div {
    text-align: start;
    margin-bottom: 5px;
}

.contact-us div {
    text-align: start;
    margin-bottom: 5px;
}

.our-sites div {
    text-align: start;
    margin-bottom: 5px;
}

.copyright {
    margin-top: 20px;
}

footer h4 {
    margin-bottom: 12px;
}


footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #f1c40f;
}

footer .fab {
    margin-right: 5px;
}


.comments-section {
    max-width: 1000px;
    margin: 0 auto;
}

.comments-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Contenedor de comentarios horizontal */
.comments-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.comment {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 30%;
    min-width: 250px;
    box-sizing: border-box;
    position: relative;
}

.comment::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #ffffff;
}

.comment .text {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
}

.comment .author {
    font-size: 14px;
    color: #777;
}


@media (max-width: 768px) {
    .comments-section {
        flex-direction: column;
        align-items: center;
    }

    .comment {
        width: 90%;
    }
}
