    /* Estilo para el texto "DEFENSA" */
    .texto-defensa-final {
        font-weight: 900;
        color: #ffffff;
        text-shadow: 2px 2px 15px rgba(0,0,0,0.6); /* Sombra para legibilidad */
        position: relative;
        display: inline-block;
    }


    .persiana:hover .vertical-text {
        color: #D3007F; /* Cambia a rosa neón al hacer hover */
        background: rgba(0, 0, 0, 0.7);
    }

   .persiana video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4; /* Más oscuro en reposo para que el texto se vea mejor */
        transition: all 0.5s ease;
    }

    .persiana:hover video {
        opacity: 1;
        transform: scale(1.05); /* Zoom sutil al hover */
    }

    .texto-persiana {
        position: absolute;
        width: 100%;
        text-align: center;
        z-index: 5;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 16px; /* Más grande */
        pointer-events: none;
        color: #fff;
        /* Sombra de texto fuerte para que resalte sobre el video */
        text-shadow: 0px 0px 10px rgba(0,0,0,0.8), 0px 0px 20px rgba(0,0,0,0.5);
    }

    /* Clase para los que van arriba */
    .pos-top { top: 30px; }
    /* Clase para los que van abajo */
    .pos-bottom { bottom: 30px; }

    

    .tabla-premios-creativa {
        /* Fondo blanco muy sutil pero con desenfoque fuerte para separar del negro */
        background: rgba(255, 255, 255, 0.08); 
        padding: 40px;
        border-radius: 24px;
        backdrop-filter: blur(15px); /* Desenfoque de fondo */
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .categoria-tag {
        display: inline-block;
        background: #D3007F;
        color: #fff;
        padding: 6px 18px;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 13px;
        margin-bottom: 20px;
        border-radius: 4px;
        /* Brillo para que resalte en la oscuridad */
        box-shadow: 0 0 15px rgba(255, 0, 127, 0.5); 
    }

.categoria-tag.azul { 
        background: #1F47B4; 
        color: #000; 
        box-shadow: 0 0 15px rgba(0, 4, 255, 0.5);
    }

   .premios-grid {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

   .p-item span {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        color: #1F47B4; /* Color cian para que sea legible */
    }

    /* Colores de medallas sutiles */
/* Resaltado de los montos con luz */
    .gold { 
        border: 1px solid #ffd700; 
        color: #ffd700; 
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    .silver { 
        border: 1px solid #c0c0c0; 
        color:  #c0c0c0;
        text-shadow: 0 0 10px rgba(68, 68, 68, 0.3);
    }
    .bronze { 
        border: 1px solid #cd7f32; 
        color: #cd7f32;
        text-shadow: 0 0 10px rgba(237, 156, 5, 0.3);
    }

    .txt-juvenil {
        font-size: 18px;
        color: #ffffff;
        margin-top: 10px;
        line-height: 1.4;
    }

    .txt-juvenil strong {
        color: #1F47B4; /* Resalte en el texto juvenil */
    }

    .legales-mini {
        font-size: 11px;
        color: #fff;
        opacity: 0.6;
        margin-top: 30px;
        font-style: italic;
    }

    .btn-final-mini {
        background: #1F47B4;
        color: #000000 !important; 
        font-weight: 800;
        padding: 15px 35px;
        font-size: 14px;
        display: inline-block;
        text-transform: uppercase;
        text-decoration: none;
    }

    /* Fondo Negro para el Slide 2 */
    .bg-black-total { background: #000 !important; }

    /* Alineación del bloque de texto y botón */
    .col-flex-center {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra todo el bloque horizontalmente */
        text-align: center;
    }

    .contenedor-defensa-final {
        position: relative;
        display: inline-block;
        padding: 0 20px;
        z-index: 1;
    }

    .mancha-imagen-final {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 150%; 
        height: auto; 
        z-index: -1;
        opacity: 0.9;
    }

    /* Persianas con IMÁGENES (Cero Lag) */
    .contenedor-persianas {
        display: flex;
        height: 450px;
        width: 100%;
        gap: 10px;
        padding: 20px 0;
    }

    .persiana {
        flex: 1;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
        border: 1px solid rgba(255,255,255,0.1);
        /* Usamos background-image en lugar de video */
        background-size: cover;
        background-position: center;
    }

    .persiana:hover {
        flex: 3; /* Se expande más para mostrar la imagen */
        border-color: #D3007F;
    }

    .persiana::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); /* Oscurece la imagen base */
        transition: 0.3s;
    }

    .persiana:hover::before {
        background: rgba(0,0,0,0.1); /* Se aclara al pasar el mouse */
    }

    .vertical-text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: inline-block;
        background: rgba(0, 0, 0, 0.7);
        padding: 15px 8px;
        border-radius: 5px;
        color: #fff;
        font-weight: 900;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .contenedor-boton-inscribete {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10; /* Elevamos el contenedor */
}

    .client-logos .colaborador-item:hover img,
    .client-logos .owl-item:hover img {
        filter: grayscale(0%) brightness(100%) !important; 
        opacity: 1 !important;
        transform: scale(1.1);
    }

    /* Estilo extra para el contenedor de la sección si no lo tienes */
    .bg-light-grey {
    background-color: #ffffff !important; /* Gris muy suave */
}

.btn-ajustado {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 20;
    
    /* Control de Colores - Blanco total */
    color: #ffffff !important; 
    border: 2px solid #ffffff !important;
    background-color: transparent !important;

    /* Dimensiones y Tipografía */
    height: 65px !important;
    padding: 0 50px !important;
    font-weight: bold !important;
    font-size: 18px !important;
    text-transform: uppercase;
    text-decoration: none !important; /* Quita el subrayado azul */
    
    transition: all 0.3s ease-in-out !important;
    cursor: pointer !important;
}

/* Estado cuando pasas el mouse (Hover) */
.btn-ajustado:hover {
    background-color: #ffffff !important; /* Se rellena de blanco */
    color: #000000 !important;          /* El texto cambia a negro para que se lea */
    transform: translateY(-3px);
}

    #slider h2 {
        line-height: 1.1 !important; /* Un poco más de aire entre líneas */
        margin-bottom: 20px !important;
    }

    .titulo-ajustado-radar {
        font-size: 70px !important;
        font-weight: 800 !important;
        line-height: 1.05 !important; /* Valor mágico para que no se encimen ni se separen mucho */
        margin-bottom: 20px !important;
        text-transform: uppercase;
    }

@media (max-width: 991px) {
    /* 1. Reducir títulos masivos */
    #slider h1.display-1, 
    #slider h2 {
        font-size: 40px !important;
        line-height: 1.0 !important;
        margin-bottom: 20px !important;
    }
    
    #slider h1 span {
        font-size: 35px !important;
    }

    /* 2. Ajustar el texto de "DEFENSA" y la mancha */
    .texto-defensa-final {
        font-size: 42px !important;
    }
    .mancha-imagen-final {
        max-width: 120%;
    }

    /* 3. PERSIANAS: En móvil no pueden ser horizontales, 
       las convertimos en una cuadrícula o lista */
    .contenedor-persianas {
        flex-direction: column; /* Se apilan una arriba de otra */
        height: auto !important; /* Que crezca según el contenido */
        gap: 5px;
    }

    .persiana {
        height: 80px; /* Altura fija para que parezcan barras */
        flex: none !important;
        width: 100%;
    }

    .persiana:hover {
        height: 150px; /* Se expanden hacia abajo al tocar */
    }

    /* 4. Convertir texto vertical en horizontal para leer mejor */
    .vertical-text {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 12px !important;
        padding: 5px 10px !important;
    }

    /* 5. TABLA DE PREMIOS: En móvil el grid de 3 columnas se amontona */
    .premios-grid {
        flex-direction: column; /* Un premio por fila */
        gap: 10px;
    }

    .tabla-premios-creativa {
        padding: 20px !important; /* Menos espacio interno */
    }

    /* 6. Ajustar espaciados generales */
    .slide-captions {
        padding-top: 60px !important;
    }
    
    .m-t-50 {
        margin-top: 20px !important;
    }
    
    span[style*="letter-spacing: 8px"] {
        letter-spacing: 2px !important;
        font-size: 14px !important;
    }

    .btn-ajustado {
        height: 55px !important;
        width: 100%;
        font-size: 16px !important;
    }
        .titulo-ajustado-radar {
            font-size: 42px !important;
            line-height: 1.0 !important;
        }
        .contenedor-boton-inscribete {
            margin-top: 20px !important;
        }
}

