/* Estilos para el carrusel */
.carrusel-container {
    background-color: #000;
    color: white;
    padding: 0.75rem 0; /* Reducido el padding vertical */
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 48px; /* Misma altura que el menú */
    display: flex;
    align-items: center;
}

.carrusel-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
    overflow: hidden;
    width: 100%;
}

.carrusel-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carrusel-item.active {
    color: #4ade80; /* Verde para el título activo */
    font-weight: 700;
}

.carrusel-item.next {
    opacity: 0.8;
}

.carrusel-separator {
    display: inline-block;
    width: 8px; /* Tamaño reducido */
    height: 8px; /* Tamaño reducido */
    background-color: #ef4444; /* Rojo */
    border-radius: 50%;
    margin: 0 25px 0 0;
    flex-shrink: 0;
}
