﻿
.ContendorCarrusel {
    font-family: 'Montserrat', sans-serif;
    margin: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrusel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
    max-width: 900px;
}

.carrusel-container {
    overflow: hidden;
    flex: 1;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 10px;
}

    .carrusel::-webkit-scrollbar {
        display: none;
    }

.boton {
    flex: 0 0 auto;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s, transform 0.1s;
}

    .boton:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

/* Flechas */
.flecha {
    width: 0;
    height: 0;
    border-style: solid;
    cursor: pointer;
    transition: transform 0.2s;
}

    .flecha:hover {
        transform: scale(1.2);
    }

.izquierda {
    border-width: 15px 20px 15px 0;
    border-color: transparent #3fc5e6 transparent transparent;
}

.derecha {
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #3fc5e6;
}

.flecha:hover {
    border-color: transparent transparent transparent #000;
}

.izquierda:hover {
    border-color: transparent #000 transparent transparent;
}

