/* ========================================
   CLASES ESPECÍFICAS - DONACIONES
   (Las clases base están en base-programas.css)
   ======================================== */

/* ========================================
   CARRUSEL
======================================== */
.don-carrusel-section {
    background: #000;
    overflow: hidden;
}

.don-carrusel-section .contenedor-carrusel-obj-donacion {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 420px;
}

.don-carrusel-section .carruselobj {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.don-carrusel-section .obj-carrusel {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.don-carrusel-section .obj-carrusel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.don-carrusel-section .prevobj,
.don-carrusel-section .nextobj {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(57, 63, 111, 0.75);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.don-carrusel-section .prevobj { left: 16px; }
.don-carrusel-section .nextobj { right: 16px; }
.don-carrusel-section .prevobj:hover,
.don-carrusel-section .nextobj:hover { background: var(--p-navy); }

.don-carrusel-section .indicador-puntos {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.don-carrusel-section .punto {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.don-carrusel-section .punto.activo { background: var(--p-gold); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .don-carrusel-section .contenedor-carrusel-obj-donacion { height: 280px; }
}

@media (max-width: 480px) {
    .don-carrusel-section .contenedor-carrusel-obj-donacion { height: 200px; }
}
