.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.carousel-container {
    flex-grow: 1;
    width: 990px;
    overflow: hidden; 
    position: relative; 
    background: none; 
    box-shadow: none; 
}

.carousel-slide {
    display: none;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.carousel-slide .producto-card {
    flex: 0 0 calc((100% - 50px) / 3); 
    max-width: calc((100% - 50px) / 3);
    margin: 0; 
}

.carousel-arrow {
    background-color: rgba(255, 255, 255, 0.8); 
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    margin: 0 10px;
}

.carousel-arrow:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.dots-container {
    padding: 20px 0;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #007bff;
}
.catalogo {
    padding: 80px 0 80px 0;
}





