/* SECCIÓN ARNESES */
#arneses-section {
    padding: 80px 20px;

}


/* Título y Párrafo */
#arneses-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5em;
}

.arneses-paragraph {
    width: 100%;
    text-align: justify;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Animaciones para elementos que aparecen al hacer scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel de Imágenes */
#arnesesCarousel .carousel-inner {
    padding: 0 10px;
}

#arnesesCarousel .carousel-item {
    padding: 10px;
}

#arnesesCarousel img {
    max-height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#arnesesCarousel img:hover {
    transform: scale(1.05);
}

/* Ocultar indicadores para un diseño limpio */
#arnesesCarousel .carousel-indicators {
    display: none;
}

/* Modal */
#imageModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#imageModal img {
    max-height: 90vh;
}