/* CARRUSEL MONTSERRAT */
/* Style Carrusel Montserrat - Ajustado */
#carrusel-oeba {
    width: 100%;
    height: 75vh;
    /* Aumentamos de 60vh a 75vh para darle más altura */
    min-height: 450px;
    margin-top: 64px;
    margin-bottom: 20px;
    /* Espacio extra abajo para que no tape nada */
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* El resto de los estilos (.oeba-slide, img, etc.) se mantienen igual */
.oeba-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.oeba-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.oeba-slide.active {
    opacity: 1 !important;
    z-index: 5;
}

.oeba-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.oeba-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
}

.oeba-caption h3 {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: sans-serif !important;
}

.oeba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    /* Super importante para que responda al clic */
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 2rem;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.oeba-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 10px;
}

.oeba-dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.oeba-dot.active {
    background: white;
}


