/* Estilos para la sección de productos */
.products {
    text-align: center;
    padding: 20px;
}

.products h2 {
    font-size: 2rem;
    color: #228B22;
    margin: 20px 0;
}

/* Estilos del contenedor de carrusel */
.carousel-section {
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
}

.carousel-container {
    width: 90%; /* Ajuste flexible para móvil */
    max-width: 550px; /* Límite para desktop */
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative;
}

.carousel-container img {
    width: 100%;
    object-fit: contain;
}

.product-info {
    text-align: center;
    margin-top: 15px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #228B22;
    margin-top: 15px;
}

.product-info p {
    color: #555;
    font-size: 1rem;
}

/* Cintillo de videos */
.video-cintillo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f5f5f5;
}

.video-container {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.videos-title {
    text-align: center;
    font-size: 2rem;
    color: #228B22;
    margin: 20px 0;
}
