/* =========================
   CONFIGURACIÓN GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: white;
}













.radio-live {
    width: 100%;
    padding: 70px 20px;
    background: #080808;
    text-align: center;
    color: white;
}

.radio-live-content {
    max-width: 700px;
    margin: auto;
}

.radio-status {
    display: inline-block;
    margin-bottom: 15px;
    color: #b22675;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.radio-live h2 {
    margin: 0 0 15px;
    font-size: 40px;
}

.radio-live p {
    color: #aaa;
    margin-bottom: 30px;
}

.radio-live audio {
    width: 100%;
    max-width: 550px;
}


















/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    max-width: 1300px;
    height: 90px;

    margin: auto;
    padding: 0 30px;

    display: grid;

    /*
       1fr | logo | 1fr

       Esto mantiene el logo
       exactamente en el centro.
    */

    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}


/* =========================
   ENLACES
========================= */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 35px;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 45px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 45px;
}

.nav-links a {
    position: relative;

    color: white;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    padding: 10px 0;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Línea animada */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #b22675;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ddd;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   LOGO
========================= */

.logo {
    width: 120px;
    height: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: transform 0.4s ease;
}

.logo img {
    max-width: 160%;
    max-height: 95px;

    display: block;
}

.logo:hover {
    transform: scale(1.08);
}


/* =========================
   BOTÓN HAMBURGUESA
========================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    background: transparent;
    border: none;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;
}

.menu-toggle span {
    width: 26px;
    height: 2px;

    background: white;

    display: block;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease,
        width 0.35s ease;
}


/* Animación hamburguesa → X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================
   MENÚ MÓVIL
========================= */

.mobile-menu {
    display: none;

    flex-direction: column;

    width: 100%;

    background: rgba(15, 15, 15, 0.98);

    padding: 10px 25px 25px;

    overflow: hidden;
}

.mobile-menu a {
    color: white;
    text-decoration: none;

    padding: 16px 5px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    opacity: 0;
    transform: translateY(-15px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        color 0.3s ease;
}

.mobile-menu a:hover {
    color: #aaa;
}


/* Cuando está abierto */

.mobile-menu.active {
    display: flex;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}


/* Animación escalonada */

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.10s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.20s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.30s;
}


/* =========================
   CONTENIDO DE PRUEBA
========================= */

main section {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 30px 50px;
}

main section:nth-child(even) {
    background: #181818;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar {
        height: 75px;

        /*
          Logo a la izquierda
          Botón a la derecha
        */

        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .logo {
        justify-content: flex-start;

        width: auto;
        height: 75px;
    }

    .logo img {
        max-height: 55px;
    }

    .menu-toggle {
        display: flex;
    }

}


/* ==========================================
   BANNER PRINCIPAL
========================================== */

.banner-horarios {

    width: 100%;

    padding: 80px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #080808;

}


/* ==========================================
   CONTENEDOR DE IMAGEN
========================================== */

.banner-image-container {

    width: 100%;

    /*
       En pantallas grandes la imagen
       NO ocupará toda la pantalla.
    */

    max-width: 1250px;

    margin: 0 auto;

    overflow: hidden;

}


/* ==========================================
   IMAGEN
========================================== */

.banner-image {

    width: 100%;

    height: auto;

    display: block;

    /*
       Evita que la imagen se deforme.
    */

    object-fit: contain;

    transition:
        transform .6s ease;

}


/* Pequeño efecto al pasar el mouse */

.banner-image-container:hover .banner-image {

    transform: scale(1.015);

}


/* ==========================================
   BOTÓN
========================================== */

.banner-button-container {

    margin-top: 30px;

    display: flex;

    justify-content: center;

}


.btn-horarios {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    min-width: 250px;

    padding: 17px 28px;

    color: white;

    background: #b22675;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;

    overflow: hidden;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


/* Brillo animado */

.btn-horarios::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255,255,255,.15);

    transform: skewX(-25deg);

    transition: left .5s ease;

}


.btn-horarios:hover::before {

    left: 120%;

}


.btn-horarios:hover {
    color:#faf6f6;

    background: #585555;
    

    transform: translateY(-3px);

    

}


.btn-horarios strong {

    font-size: 21px;

    font-weight: 400;

    transition:
        transform .3s ease;

}


.btn-horarios:hover strong {

    transform: translateX(6px);

}


/* ==========================================
   SECCIÓN HORARIOS
========================================== */

.horarios-section {

    min-height: 500px;

    padding: 100px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: #111;

    color: white;

}


.horarios-section h2 {

    font-size: 45px;

    margin-bottom: 20px;

}


.horarios-section p {

    color: #aaa;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .banner-horarios {

        padding: 60px 20px;

    }

    .banner-image-container {

        max-width: 100%;

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 600px) {

   .banner-horarios {
        padding: 120px 15px 40px;
    }
    

    .banner-image-container {

        width: 100%;

    }

    .banner-image {

        width: 100%;

        height: auto;

    }

    .banner-button-container {

        width: 100%;

        margin-top: 25px;

    }

    .btn-horarios {

        width: 100%;

        max-width: 350px;

    }

}












/* =====================================================
   BOTÓN HORARIOS
===================================================== */

.btn-horarios {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-width: 220px;

    padding: 15px 20px;

    background: #b22675;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    transition: .3s ease;

}


.btn-horarios:hover {

    background: #b22675;

    transform: translateY(-3px);

}


.btn-horarios strong {

    font-size: 20px;

    line-height: 1;

}


/* =====================================================
   MODAL
===================================================== */

.modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background: rgba(0,0,0,.88);

    backdrop-filter: blur(8px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

}


.modal-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =====================================================
   CONTENIDO DEL MODAL
===================================================== */

.modal-content {

    position: relative;

    width: 100%;

    max-width: 950px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 55px;

    background: #111;

    border: 1px solid #292929;

    box-shadow:
        0 30px 100px rgba(0,0,0,.8);

    transform:
        translateY(35px)
        scale(.96);

    transition:
        transform .4s ease;

}


.modal-overlay.active .modal-content {

    transform:
        translateY(0)
        scale(1);

}


/* =====================================================
   SCROLLBAR
===================================================== */

.modal-content::-webkit-scrollbar {

    width: 6px;

}


.modal-content::-webkit-scrollbar-track {

    background: #0b0b0b;

}


.modal-content::-webkit-scrollbar-thumb {

    background: #444;

    border-radius: 10px;

}


.modal-content::-webkit-scrollbar-thumb:hover {

    background: #b22675;

}


/* =====================================================
   BOTÓN CERRAR
===================================================== */

.modal-close {

    position: sticky;

    top: 0;

    float: right;

    z-index: 10;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #333;

    background: #1d1d1d;

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: .3s ease;

}


.modal-close:hover {

    background: #b22675;

    border-color: #b22675;

    transform: rotate(90deg);

}


/* =====================================================
   ENCABEZADO
===================================================== */

.programacion-header {

    clear: both;

    text-align: center;

    padding: 10px 20px 30px;

}


.programacion-label {

    display: block;

    margin-bottom: 12px;

    color: #b22675;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 5px;

}


.programacion-header h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(40px, 7vw, 65px);

    font-weight: 900;

    line-height: .9;

    letter-spacing: -2px;

}


.programacion-header p {

    margin: 18px 0 0;

    color: #777;

    font-size: 13px;

}


/* =====================================================
   DÍAS
===================================================== */

.dias-buttons {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 35px;

}


.dia-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 16px;

    border: 1px solid #303030;

    background: #1a1a1a;

    color: #777;

    font-size: 11px;

    font-weight: 900;

    cursor: pointer;

    transition: .3s ease;

}


.dia-btn:hover {

    background: #252525;

    color: #fff;

}


.dia-btn.active {

    background: #b22675;

    border-color: #b22675;

    color: #fff;

}


/* =====================================================
   SECCIONES
===================================================== */

.horarios-dia {

    display: none;

}


.horarios-dia.active {

    display: block;

    animation: aparecerDia .4s ease;

}


@keyframes aparecerDia {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =====================================================
   CABECERA DEL DÍA
===================================================== */

.dia-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 15px;

    padding: 18px 20px;

    background: #181818;

    border-left: 4px solid #b22675;

}


.dia-header span {

    color: #666;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.dia-header h3 {

    margin: 5px 0 0;

    color: #fff;

    font-size: 18px;

    font-weight: 900;

}


.dia-header > strong {

    padding: 8px 12px;

    background: #252525;

    color: #999;

    font-size: 9px;

    white-space: nowrap;

}


/* =====================================================
   LISTA
===================================================== */

.programacion-lista {

    display: flex;

    flex-direction: column;

    gap: 6px;

}


/* =====================================================
   TARJETA
===================================================== */

.banda-card {

    display: grid;

    grid-template-columns: 65px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 14px 18px;

    background: #181818;

    border: 1px solid rgba(255,255,255,.045);

    transition:
        background .25s ease,
        transform .25s ease,
        border-color .25s ease;

}


.banda-card:hover {

    background: #222;

    border-color: rgba(189, 173, 173, 0.4);

    transform: translateX(5px);

}


/* =====================================================
   NÚMERO
===================================================== */

.banda-numero {

    color: #b22675;

    font-size: 20px;

    font-weight: 900;

    letter-spacing: -1px;

}


/* =====================================================
   INFORMACIÓN
===================================================== */

.banda-info {

    min-width: 0;

}


.banda-info h4 {

    margin: 0 0 5px;

    color: #eee;

    font-size: 13px;

    font-weight: 900;

    line-height: 1.3;

}


.banda-info span {

    color: #555;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =====================================================
   HORARIO
===================================================== */

.banda-horario {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 7px 12px;

    background: #101010;

    border: 1px solid #282828;

}


.banda-horario div {

    display: flex;

    flex-direction: column;

    align-items: center;

    min-width: 45px;

}


.banda-horario small {

    margin-bottom: 3px;

    color: #555;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}


.banda-horario strong {

    color: #fff;

    font-size: 11px;

}


.banda-horario i {

    color: #b22675;

    font-size: 9px;

}


/* =====================================================
   BLOQUE ESPECIAL
===================================================== */

.bloque-especial {

    background:
        linear-gradient(
            90deg,
            rgba(224,0,0,.12),
            #181818
        );

    border-left: 4px solid #b22675;

}


.bloque-especial .banda-info h4 {

    color: #fff;

}


.bloque-especial .banda-info span {

    color: #b22675;

}


/* =====================================================
   ANIMACIÓN TARJETAS
===================================================== */

.banda-card {

    animation: aparecerBanda .4s ease both;

}


@keyframes aparecerBanda {

    from {

        opacity: 0;

        transform: translateY(8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 700px) {

    .modal-overlay {

        padding: 10px;

    }


    .modal-content {

        width: 100%;

        max-height: 94vh;

        padding: 35px 14px 20px;

    }


    .modal-close {

        width: 38px;

        height: 38px;

    }


    .programacion-header {

        padding: 15px 10px 25px;

    }


    .programacion-label {

        font-size: 9px;

        letter-spacing: 3px;

    }


    .programacion-header h2 {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .programacion-header p {

        font-size: 12px;

    }


    /* DÍAS */

    .dias-buttons {

        grid-template-columns: 1fr;

        gap: 6px;

        margin-bottom: 20px;

    }


    .dia-btn {

        padding: 13px 10px;

        font-size: 9px;

    }


    /* CABECERA */

    .dia-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        padding: 15px;

    }


    .dia-header h3 {

        font-size: 15px;

    }


    /* TARJETAS */

    .banda-card {

        grid-template-columns: 40px 1fr;

        gap: 8px 12px;

        padding: 13px;

    }


    .banda-numero {

        align-self: start;

        font-size: 16px;

    }


    .banda-info h4 {

        font-size: 12px;

        line-height: 1.35;

    }


    .banda-info span {

        font-size: 7px;

    }


    /* HORARIO */

    .banda-horario {

        grid-column: 2;

        justify-self: start;

        margin-top: 3px;

        padding: 6px 10px;

    }


    .banda-horario div {

        min-width: 40px;

    }


    .banda-horario strong {

        font-size: 10px;

    }


    .banda-horario small {

        font-size: 6px;

    }


    .banda-horario i {

        font-size: 8px;

    }


    .btn-horarios {

        width: 100%;

    }

}


/* =====================================================
   MÓVILES MUY PEQUEÑOS
===================================================== */

@media (max-width: 380px) {

    .modal-content {

        padding-left: 10px;

        padding-right: 10px;

    }


    .programacion-header h2 {

        font-size: 32px;

    }


    .banda-card {

        padding: 11px;

    }


    .banda-info h4 {

        font-size: 11px;

    }

}

























/* =========================================
   BANNER ROCK
========================================= */

.rock-banner {

    position: relative;

    min-height: 850px;

    padding: 120px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(180, 0, 0, .22),
            transparent 35%
        ),
        #080808;

    color: white;
}


/* Textura decorativa */

.rock-banner::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.015),
        0 0 0 160px rgba(255,255,255,.01);

    animation: rotateRock 25s linear infinite;
}

@keyframes rotateRock {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   CONTENIDO
========================================= */

.rock-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

    animation: rockAppear 1s ease forwards;

}


.rock-label {

    display: inline-block;

    margin-bottom: 25px;

    padding: 8px 15px;

    border: 1px solid #b22675;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    color:#9fc7a3;
}


.rock-content h1 {

    margin: 0;

    font-size: clamp(55px, 7vw, 105px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 900;

}


.rock-content h1 span {

    color: #b22675;

}


.rock-description {

    max-width: 600px;

    margin: 35px 0;

    color: #bdbdbd;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================
   BOTONES
========================================= */

.rock-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.rock-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-width: 210px;

    padding: 17px 25px;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;

    transition: all .3s ease;

}


.rock-btn span {

    font-size: 20px;

    transition: transform .3s ease;

}


.rock-btn:hover span {

    transform: translateX(5px);

}


.rock-btn-primary {

    background: #b22675;

    color: white;

}


.rock-btn-primary:hover {

    background: #b22675;

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(196, 177, 177, 0.25);

}


.rock-btn-secondary {

    border: 1px solid #555;

    color: white;

}


.rock-btn-secondary:hover {

    border-color: white;

    background: white;

    color: black;

    transform: translateY(-3px);

}


/* =========================================
   LISTADO DE BANDAS
========================================= */

.bands-container {

    position: relative;

    z-index: 2;

    padding: 30px;

    background: rgba(214, 206, 206, 0.035);

    border: 1px solid rgba(255,255,255,.1);

    backdrop-filter: blur(15px);

    animation: bandsAppear 1.2s ease forwards;

}


.bands-title {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(252, 252, 252, 0.12);

}


.bands-title span {

    font-size: 13px;

    letter-spacing: 4px;

    font-weight: 800;

}


.bands-title small {

    color: #b22675;

    font-weight: 800;

}


/* =========================================
   GRID
========================================= */

.bands-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    max-height: 470px;

    overflow-y: auto;

}


.bands-grid span {

    padding: 12px 8px;

    color: #aaa;

    font-size: 12px;

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;

}


.bands-grid span:hover {

    color: rgb(7, 7, 7);

    background: #f1edf0;

    padding-left: 13px;

}


/* Scroll */

.bands-grid::-webkit-scrollbar {

    width: 5px;

}

.bands-grid::-webkit-scrollbar-track {

    background: #111;

}

.bands-grid::-webkit-scrollbar-thumb {

    background: #b22675;

}


/* =========================================
   ANIMACIONES
========================================= */

@keyframes rockAppear {

    from {

        opacity: 0;

        transform: translateX(-50px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


@keyframes bandsAppear {

    from {

        opacity: 0;

        transform: translateX(50px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .rock-banner {

        grid-template-columns: 1fr;

        min-height: auto;

        padding: 110px 25px 70px;

        gap: 50px;

    }


    .rock-content h1 {

        font-size: clamp(50px, 15vw, 85px);

    }


    .rock-description {

        font-size: 15px;

    }


    .bands-container {

        padding: 20px;

    }


    .bands-grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-height: 400px;

    }

}

@media (max-width: 500px) {

    .rock-banner {

        padding-left: 18px;

        padding-right: 18px;

    }

    .rock-content h1 {

        font-size: 52px;

        letter-spacing: -2px;

    }

    .rock-buttons {

        flex-direction: column;

    }

    .rock-btn {

        width: 100%;

    }

    .bands-grid {

        grid-template-columns: 1fr;

    }

}





/* ==========================================
   BANNER NOTICIAS
========================================== */

.news-banner {

    position: relative;

    width: 100%;

    max-width: 1400px;

    height: 450px;

    margin: 80px auto;

    overflow: hidden;

    border-radius: 4px;

}


/* ==========================================
   IMAGEN
========================================== */

.news-banner-image {

    position: absolute;

    inset: 0;

}


.news-banner-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition: transform .7s ease;

}


.news-banner:hover
.news-banner-image img {

    transform: scale(1.04);

}


/* ==========================================
   DEGRADADO
========================================== */

.news-banner::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.10) 100%
        );

    z-index: 1;

}


/* ==========================================
   CONTENIDO
========================================== */

.news-banner-overlay {

    position: relative;

    z-index: 2;

    height: 100%;

    max-width: 650px;

    padding: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    color: white;

}


.news-banner-overlay span {

    margin-bottom: 15px;

    color: #e00000;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 4px;

}


.news-banner-overlay h2 {

    margin: 0 0 18px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: .95;

    font-weight: 900;

}


.news-banner-overlay p {

    max-width: 500px;

    margin: 0 0 30px;

    color: #ddd;

    font-size: 15px;

    line-height: 1.7;

}


/* ==========================================
   BOTÓN
========================================== */

.news-banner-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 25px;

    background: #4a4e4b;

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    transition:
        background .3s ease,
        transform .3s ease;

}


.news-banner-button:hover {

    background: #383a38;

    transform: translateX(6px);

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .news-banner {

        margin: 60px 5%;

        width: 90%;

        height: 400px;

    }


    .news-banner-overlay {

        padding: 45px;

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 600px) {

    .news-banner {

        width: calc(100% - 40px);

        height: 480px;

        margin: 50px 20px;

    }


    .news-banner::after {

        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.9) 0%,
                rgba(0,0,0,.45) 65%,
                rgba(0,0,0,.15) 100%
            );

    }


    .news-banner-overlay {

        padding: 30px 25px;

        justify-content: flex-end;

    }


    .news-banner-overlay h2 {

        font-size: 40px;

    }


    .news-banner-overlay p {

        font-size: 14px;

    }


    .news-banner-button {

        padding: 13px 22px;

    }

}























/* ==========================================
   SECTION
========================================== */

.info-section {

    width: 100%;

    padding: 110px 7%;

    background: #e0dbdb;

    color: white;

    overflow: hidden;

}


/* ==========================================
   ENCABEZADO
========================================== */

.info-header {

    max-width: 900px;

    margin: 0 auto 60px;

    text-align: center;

}


.info-subtitle {

    display: block;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #a53a9f;

}


.info-header h2 {

    margin: 0;

    font-size: clamp(32px, 4vw, 55px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;

    color: #0f0f0f;

}


/* ==========================================
   GRILLA
========================================== */

.info-grid {

    width: 100%;

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


/* ==========================================
   TARJETAS
========================================== */

.info-card {

    position: relative;

    min-height: 330px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #111;

    border: 1px solid rgba(255,255,255,.1);

    overflow: hidden;

    cursor: pointer;

    opacity: 0;

    transform: translateY(50px);

    animation: cardAppear .8s ease forwards;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;

}


/* Animación escalonada */

.info-card:nth-child(1) {
    animation-delay: .1s;
}

.info-card:nth-child(2) {
    animation-delay: .2s;
}

.info-card:nth-child(3) {
    animation-delay: .3s;
}

.info-card:nth-child(4) {
    animation-delay: .4s;
}


/* ==========================================
   EFECTO DE LUZ
========================================== */

.info-card::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -150px;
    right: -150px;

    border-radius: 50%;

    background: rgba(212, 205, 205, 0.15);

    filter: blur(50px);

    transition:
        transform .5s ease,
        opacity .5s ease;

    opacity: 0;

}


/* ==========================================
   HOVER
========================================== */

.info-card:hover {

    transform: translateY(-10px);

    border-color: #cfcacf;

    background: #151515;

}


.info-card:hover::before {

    opacity: 1;

    transform: scale(1.4);

}


/* ==========================================
   NÚMERO
========================================== */

.card-number {

    position: relative;

    z-index: 2;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #666;

    transition:
        color .3s ease;

}


.info-card:hover .card-number {

    color: #9fc7a3;

}


/* ==========================================
   CONTENIDO
========================================== */

.card-content {

    position: relative;

    z-index: 2;

}


.card-content h3 {

    margin-bottom: 15px;

    font-size: 25px;

    font-weight: 800;

    color: #9fc7a3;

}


.card-content p {

    margin: 0;

    color: #999;

    font-size: 14px;

    line-height: 1.7;

}


/* ==========================================
   FLECHA
========================================== */

.card-arrow {

    position: relative;

    z-index: 2;

    align-self: flex-end;

    font-size: 25px;

    color: #666;

    transition:
        transform .3s ease,
        color .3s ease;

}


.info-card:hover .card-arrow {

    color: #f1ecf1;

    transform: translateX(8px);

}


/* ==========================================
   ANIMACIÓN DE ENTRADA
========================================== */

@keyframes cardAppear {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .info-section {

        padding: 90px 5%;

    }


    .info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 600px) {

    .info-section {

        padding: 75px 20px;

    }


    .info-header {

        margin-bottom: 40px;

    }


    .info-header h2 {

        font-size: 34px;

    }


    .info-subtitle {

        font-size: 10px;

        letter-spacing: 3px;

    }


    .info-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .info-card {

        min-height: 270px;

        padding: 28px;

    }


    .card-content h3 {

        font-size: 23px;

    }

}




/* ==========================================
   SECTION APOYAN
========================================== */

.support-section {

    width: 100%;

    padding: 90px 0;

    background: #080808;

    color: white;

    overflow: hidden;

}


/* ==========================================
   TÍTULO
========================================== */

.support-title {

    text-align: center;

    margin-bottom: 55px;

}


.support-title span {

    position: relative;

    display: inline-block;

    font-size: clamp(30px, 4vw, 50px);

    font-weight: 900;

    letter-spacing: 5px;

}


/* Líneas a los lados */

.support-title span::before,
.support-title span::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 100px;

    height: 1px;

    background: rgba(255,255,255,.3);

}


.support-title span::before {

    right: calc(100% + 25px);

}


.support-title span::after {

    left: calc(100% + 25px);

}


/* ==========================================
   CONTENEDOR
========================================== */

.carousel-wrapper {

    width: 100%;

    overflow: hidden;

    position: relative;

}


/* Degradados laterales */

.carousel-wrapper::before,
.carousel-wrapper::after {

    content: "";

    position: absolute;

    top: 0;

    width: 150px;

    height: 100%;

    z-index: 5;

    pointer-events: none;

}


.carousel-wrapper::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            #080808,
            transparent
        );

}


.carousel-wrapper::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            #080808,
            transparent
        );

}


/* ==========================================
   CARRUSEL
========================================== */

.carousel-track {

    display: flex;

    align-items: center;

    gap: 30px;

    width: max-content;

    will-change: transform;
    

}


/* ==========================================
   LOGOS
========================================== */

.support-logo {

    width: 190px;

    height: 110px;

    flex-shrink: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    background: #fffafa;

    border: 1px solid rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;

}


.support-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 1;

    filter: none;
    

}


/* Hover */

.support-logo:hover {

    transform: translateY(-6px);

    background: #ffffff;

    border-color: rgba(224,0,0,.5);

}


.support-logo:hover img {

    filter: grayscale(0);

    opacity: 1;

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 700px) {

    .support-section {

        padding: 70px 0;

    }


    .support-title {

        margin-bottom: 40px;

    }


    .support-title span {

        font-size: 30px;

        letter-spacing: 3px;

    }


    .support-title span::before,
    .support-title span::after {

        width: 45px;

    }


    .support-title span::before {

        right: calc(100% + 15px);

    }


    .support-title span::after {

        left: calc(100% + 15px);

    }


    .support-logo {

        width: 150px;

        height: 90px;

    }


    .carousel-track {

        gap: 20px;

    }


    .carousel-wrapper::before,
    .carousel-wrapper::after {

        width: 70px;

    }

}



/* ==========================================
   FOOTER
========================================== */

.site-footer {

    position: relative;
    background: #050505;
    color: white;
    overflow: hidden;

}
.site-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url("/Assets/fondo\ 1.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0.15;

    z-index: 0;

}
.site-footer > * {

    position: relative;

    z-index: 1;

}

/* ==========================================
   CONTENEDOR
========================================== */

.footer-container {

    width: 100%;

    max-width: 1300px;

    margin: auto;

    padding: 70px 40px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;

    align-items: center;

}


/* ==========================================
   LOGO
========================================== */

.footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-logo {

    display: inline-flex;

    margin-bottom: 20px;

}


.footer-logo img {

    width: 160px;

    height: auto;

    display: block;

    transition:
        transform .4s ease;

}


.footer-logo:hover img {

    transform: scale(1.05);

}


.footer-brand p {

    max-width: 320px;

    margin: 0;

    color: #fcf9f9;

    font-size: 14px;

    line-height: 1.7;

}







/* ==========================================
   TÍTULOS
========================================== */

.footer-contact h3,
.footer-social h3 {

    margin: 0 0 20px;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;

}


/* ==========================================
   CONTACTO
========================================== */

.footer-contact a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #f1f1f1;

    text-decoration: none;

    font-size: 15px;

    transition:
        color .3s ease,
        transform .3s ease;

}


.footer-contact a i {

    color: #b22675;

    font-size: 16px;

}


.footer-contact a:hover {

    color: rgb(241, 239, 239);

    transform: translateX(5px);

}


/* ==========================================
   REDES SOCIALES
========================================== */

.social-icons {

    display: flex;

    gap: 12px;

}


.social-icons a {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    background: #111;

    border: 1px solid rgba(255,255,255,.1);

    text-decoration: none;

    font-size: 18px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;

}


.social-icons a:hover {

    background: #b22675;

    border-color: #ece6e6;

    transform: translateY(-5px);

}


/* ==========================================
   PARTE INFERIOR
========================================== */

.footer-bottom {

    width: 100%;

    max-width: 1300px;

    margin: auto;

    padding: 25px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

}


.footer-bottom p {

    margin: 0;

    color: #666;

    font-size: 12px;

}


.made-by strong {

    color: #aaa;

    font-weight: 600;

}


/* ==========================================
   RESPONSIVE TABLET
========================================== */

@media (max-width: 800px) {

    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }

}


/* ==========================================
   RESPONSIVE MÓVIL
========================================== */

@media (max-width: 550px) {

    .footer-container {

        grid-template-columns: 1fr;

        padding: 55px 25px;

        gap: 40px;

        text-align: center;

    }


    .footer-brand {

        align-items: center;

    }


    .footer-brand p {

        max-width: 280px;

    }


    .footer-contact {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .footer-social {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .footer-bottom {

        padding: 25px;

        flex-direction: column;

        text-align: center;

    }

}







/* ==========================================
   LOGOS INSTITUCIONALES
========================================== */

.footer-institutional {

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
    padding: 35px 40px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 100px;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);

}


/* ==========================================
   GRUPOS
========================================== */

.institutional-group {

    flex: 1;

    text-align: center;

}


.institutional-group h4 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* ==========================================
   CONTENEDOR DE LOGOS
========================================== */

.institutional-logos {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

}


/* ==========================================
   CUADRO DEL LOGO
========================================== */

.institutional-logo {

    width: 150px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* ==========================================
   IMAGEN
========================================== */

.institutional-logo img {

    max-width: 130px;

    max-height: 75px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

    transition:
        transform .3s ease,
        opacity .3s ease;

}


/* ==========================================
   HOVER
========================================== */

.institutional-logo:hover img {

    transform: scale(1.08);

    opacity: .9;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 800px) {

    .footer-institutional {

        gap: 40px;

        padding: 35px 30px;

    }


    .institutional-logos {

        gap: 20px;

    }


    .institutional-logo {

        width: 125px;

        height: 80px;

    }


    .institutional-logo img {

        max-width: 110px;

        max-height: 65px;

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 550px) {

    .footer-institutional {

        flex-direction: column;

        align-items: center;

        gap: 40px;

        padding: 40px 20px;

    }


    .institutional-group {

        width: 100%;

    }


    .institutional-group h4 {

        margin-bottom: 20px;

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .institutional-logos {

        gap: 15px;

    }


    .institutional-logo {

        width: 120px;

        height: 75px;

    }


    .institutional-logo img {

        max-width: 105px;

        max-height: 60px;

    }

}


/* ==========================================
   MÓVILES PEQUEÑOS
========================================== */

@media (max-width: 380px) {

    .institutional-logos {

        gap: 8px;

    }


    .institutional-logo {

        width: 110px;

        height: 70px;

    }


    .institutional-logo img {

        max-width: 95px;

        max-height: 55px;

    }

}
/***************************************/















/* ==========================================
   EMPRESAS ORGANIZADORAS
========================================== */

.organizers-section {

    position: relative;

    width: 100%;

    padding: 100px 30px;

    background: #080808;

    color: #ffffff;

    overflow: hidden;

}


/* LUZ DE FONDO */

.organizers-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(178, 38, 117, 0.08);

    filter: blur(120px);

    border-radius: 50%;

    pointer-events: none;

}


/* CONTENEDOR */

.organizers-container {

    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 1200px;

    margin: auto;

}


/* ==========================================
   ENCABEZADO
========================================== */

.organizers-header {

    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;

}


.organizers-subtitle {

    display: block;

    margin-bottom: 15px;

    color: #b22675;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.organizers-header h2 {

    margin: 0 0 20px;

    font-size: clamp(32px, 5vw, 52px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1px;

}


.organizers-header p {

    max-width: 650px;

    margin: auto;

    color: #aaa;

    font-size: 15px;

    line-height: 1.8;

}


/* ==========================================
   GRILLA
========================================== */

.organizers-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* ==========================================
   TARJETA
========================================== */

.organizer-card {
    position: relative;

    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #ffffff;

    border-radius: 4px;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* EFECTO DE LUZ */

.organizer-card::before {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    background: rgba(178, 38, 117, 0.08);

    filter: blur(50px);

    border-radius: 50%;

    opacity: 0;

    transition: opacity .4s ease;

}


/* ENLACE */

.organizer-card a {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    min-height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

}


/* LOGO */

.organizer-card img {

    max-width: 70%;

    max-height: 90px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 0 7px rgba(255,255,255,0.35));

    transition:
        transform .4s ease,
        filter .4s ease;

}


/* ==========================================
   HOVER
========================================== */

.organizer-card:hover {
    transform: translateY(-8px);

    border-color: #ffffff;

    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.18);
}

.organizer-card:hover::before {

    opacity: 1;

}


.organizer-card:hover img {

    transform: scale(1.08);

    filter:
        drop-shadow(0 0 12px rgba(255,255,255,0.75));

}


/* ==========================================
   FRASE FINAL
========================================== */

.organizers-footer {

    margin-top: 55px;

    text-align: center;

}


.organizers-footer p {

    margin: 0;

    color: #777;

    font-size: 14px;

    letter-spacing: 1px;

}


.organizers-footer strong {

    color: #ffffff;

    font-weight: 500;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .organizers-section {

        padding: 80px 25px;

    }


    .organizers-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

    }


    .organizer-card {

        min-height: 150px;

    }


    .organizer-card a {

        min-height: 150px;

    }


    .organizer-card img {

        max-width: 70%;

        max-height: 80px;

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 550px) {

    .organizers-section {

        padding: 70px 20px;

    }


    .organizers-header {

        margin-bottom: 40px;

    }


    .organizers-subtitle {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .organizers-header h2 {

        font-size: 32px;

    }


    .organizers-header p {

        font-size: 14px;

        line-height: 1.7;

    }


    .organizers-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

    }


    .organizer-card {

        min-height: 120px;

    }


    .organizer-card a {

        min-height: 120px;

    }


    .organizer-card img {

        max-width: 75%;

        max-height: 65px;

    }


    .organizers-footer {

        margin-top: 40px;

    }

}


/* ==========================================
   MÓVIL PEQUEÑO
========================================== */

@media (max-width: 380px) {

    .organizers-grid {

        gap: 10px;

    }


    .organizer-card {

        min-height: 105px;

    }


    .organizer-card a {

        min-height: 105px;

    }


    .organizer-card img {

        max-width: 78%;

        max-height: 55px;

    }

}





/* ==========================================
   TRANSMISIÓN EN VIVO
========================================== */

.live-section {

    width: 100%;

    padding: 90px 25px;

    background: #080808;

    color: #ffffff;

}


.live-container {

    width: 100%;

    max-width: 1100px;

    margin: auto;

    text-align: center;

}


/* ==========================================
   ETIQUETA EN VIVO
========================================== */

.live-label {

    display: inline-block;

    margin-bottom: 15px;

    color: #b22675;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}


/* ==========================================
   TITULO
========================================== */

.live-container h2 {

    margin: 0 0 18px;

    font-size: clamp(32px, 5vw, 52px);

    font-weight: 800;

    line-height: 1.1;

}


/* ==========================================
   TEXTO
========================================== */

.live-container p {

    max-width: 700px;

    margin: 0 auto 40px;

    color: #aaaaaa;

    font-size: 15px;

    line-height: 1.8;

}


/* ==========================================
   VIDEO
========================================== */

.youtube-live {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000000;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(178, 38, 117, 0.10);

}


/* IFRAME */

.youtube-live iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: 0;

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 800px) {

    .live-section {

        padding: 75px 25px;

    }

    .live-container p {

        margin-bottom: 30px;

    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 550px) {

    .live-section {

        padding: 60px 18px;

    }

    .live-label {

        font-size: 10px;

        letter-spacing: 2px;

    }

    .live-container h2 {

        font-size: 32px;

    }

    .live-container p {

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 25px;

    }

    .youtube-live {

        border-radius: 5px;

    }

}