    /* =========================================
       ESTILOS BLINDADOS (NAMESPACE: Academy-)
       ========================================= */

    /* --- WRAPPER GENERAL --- */
    .Academy-wrapper {
        position: relative;
        width: 100%;
        padding: 20px 0;
        user-select: none; 
    }

    /* --- CONTENEDOR DESLIZABLE --- */
    .Academy-carousel-container {
        width: 100%;
        overflow: hidden; 
        cursor: grab; 
        scroll-behavior: auto; /* Vital para el bucle infinito */
    }
    
    .Academy-carousel-container:active {
        cursor: grabbing;
    }

    .Academy-track {
        display: flex;
        gap: 30px;
        width: max-content;
        padding: 15px; /* Un poco de padding para las sombras */
    }
    
    /* --- FLECHAS DE NAVEGACIÓN --- */
    .Academy-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px; height: 45px;
        border-radius: 50%;
        background: white;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        display: flex; align-items: center; justify-content: center;
        z-index: 10; cursor: pointer;
        transition: all 0.3s ease;
        color: #198754; /* Verde corporativo */
    }
    
    .Academy-nav-btn:hover {
        background: #198754; color: white;
        box-shadow: 0 8px 15px rgba(25, 135, 84, 0.2);
    }
    
    .Academy-prev { left: 10px; }
    .Academy-next { right: 10px; }

    @media (max-width: 768px) { .Academy-nav-btn { display: none; } } 
    
    /* --- TARJETAS (DISEÑO ÚNICO) --- */
    .Academy-card {
        width: 300px; /* Ancho estricto */
        flex-shrink: 0;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        /* Replicamos estilos de card para no depender de Bootstrap .card */
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .Academy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    .Academy-img-wrapper {
        height: 180px; 
        position: relative;
        width: 100%;
    }

    /* Forzamos estilos a la imagen para que el CSS global del sitio no interfiera */
    .Academy-img-wrapper img {
        width: 100% !important; 
        height: 100% !important; 
        object-fit: cover !important; 
        pointer-events: none; 
        border: none !important;
        margin: 0 !important;
    }

    .Academy-badge-new {
        position: absolute; top: 10px; right: 10px;
        background-color: #65a30d; color: white;
        padding: 4px 10px; border-radius: 4px; 
        font-weight: bold; font-size: 0.75rem;
        z-index: 2;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    /* Cuerpo de la tarjeta propio */
    .Academy-card-body {
        padding: 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .Academy-title {
        font-weight: 700;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        line-height: 1.4;
        color: #212529; /* Color texto seguro */
    }

    .Academy-meta {
        color: #6c757d;
        font-size: 0.875em;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    /* --- BOTÓN PERSONALIZADO --- */
    .Academy-btn-action {
        background-color: #198754 !important; 
        color: white !important; 
        border: none;
        width: 100%; 
        padding: 10px; 
        border-radius: 25px; 
        font-weight: 500;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: auto; /* Empuja el botón al fondo */
        transition: background-color 0.3s ease;
    }
    
    .Academy-btn-action:hover { 
        background-color: #146c43 !important; 
        color: white !important;
    }

    .Academy-link-more {
        display: block;
        margin-top: 0.5rem;
        color: #0d6efd;
        text-decoration: none;
        font-size: 0.85rem;
    }
