/* CARRUSEL SAN TELMO - UNIFICADO */
#carrusel-oeba {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.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.8s ease-in-out;
    z-index: 1;
}

.oeba-slide.active {
    opacity: 1;
    z-index: 2;
}

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

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

.oeba-caption h3 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
    font-family: sans-serif;
}

.linea-decorativa {
    height: 2px;
    width: 100px;
    background-color: white;
    margin: 15px auto;
}

/* Reemplaza al h5 para que el validador no chille */
.subtitulo-h5 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    font-family: sans-serif;
    color: white;
}

.oeba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 2rem;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

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

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

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

@media (max-width: 768px) {
    #carrusel-oeba {
        height: 40vh;
        min-height: 250px;
    }

    .oeba-caption h3 {
        font-size: 1.8rem;
    }

    .oeba-caption .subtitulo-h5 {
        font-size: 1.1rem;
    }
}