.productos {
    padding: 80px 0;
    background-color: #e0e5ec;
    color: #555e67;
    text-align: center;
}
.productos h2 {
    color: #4a545e;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 600;
}
.productos-categorias-filtros {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.productos .filtro-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5f6c7a;
    background-color: #e0e5ec;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
}
.productos .filtro-btn:hover {
    color: #4CAF50;
}
.productos .filtro-btn.active {
    color: #4CAF50;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}
.producto-carrusel {
    position: relative;
    width: 80%;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carrusel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.carrusel-track {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carrusel-slide {
    flex-shrink: 0;
    width: 100vw;
    max-width: 600px;  
    height: 95%;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0.4;
    transform: scale(0.6);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.carrusel-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.carrusel-slide img {
    max-width: 100%;
    height: 400px;
    object-fit: contain;
}
.producto-info {
    margin-top: 20px;
}
.producto-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b444c;
    margin: 0 0 10px 0;
}
.producto-info p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
    color: #5f6c7a;
}
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(224, 229, 236, 0.5);
    border: none;
    font-size: 24px;
    color: #5f6c7a;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 6px #bebebe, -3px -3px 6px #ffffff;
}
.carrusel-btn:hover {
    color: #4CAF50;
    box-shadow: inset 2px 2px 5px #bebebe, inset -2px -2px 5px #ffffff;
}
.carrusel-btn:disabled {
    opacity: 0.5;
    cursor: default;
    box-shadow: none;
}
.carrusel-btn.prev { left: 10px; }
.carrusel-btn.next { right: 10px; }
.catalogo-global-contenedor {
    margin-top: 10px;
}
.productos .btn-ver-catalogo {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a545e;
    text-decoration: none;
    background-color: #e0e5ec;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 12px #bebebe, -6px -6px 12px #ffffff;
}
.productos .btn-ver-catalogo:hover {
    color: #4CAF50;
    box-shadow: inset 5px 5px 10px #bebebe, inset -5px -5px 10px #ffffff;
}
@media (max-width: 992px) {
    .producto-carrusel {
        width: 90%;
        height: 550px;
    }
    .carrusel-slide img {
        height: 350px;
    }
    .producto-info h3 {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .productos h2 {
        font-size: 2rem;
    }
    .productos-categorias-filtros {
        gap: 10px;
        margin-bottom: 30px;
    }
    .productos .filtro-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .producto-carrusel {
        width: 100%;
        height: 480px;
    }
    .carrusel-slide img {
        height: 250px;
    }
    .carrusel-slide {
        transform: scale(0.7);
    }
    .producto-info {
        margin-top: 15px;
    }
    .producto-info h3 {
        font-size: 1.3rem;
    }
    .producto-info p {
        font-size: 0.9rem;
        max-width: 90%;
    }
    .carrusel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .carrusel-btn.prev { left: 5px; }
    .carrusel-btn.next { right: 5px; }
    .carrusel-viewport {
       -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
       mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }
}
@media (max-width: 480px) {
    .producto-carrusel {
        height: 420px;
    }
    .carrusel-slide img {
        height: 200px;
    }
    .producto-info h3 {
        font-size: 1.1rem;
    }
    .producto-info p {
        display: none;
    }
    .catalogo-global-contenedor {
        margin-top: 25px;
    }
    .productos .btn-ver-catalogo {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}