@charset "utf-8";
/* CSS Document */
/* =========================================================
   HOME - DESTACADOS
========================================================= */

.ac-hm-destacados-slider {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}

.ac-hm-destacados-slides {
    position: relative;
    width: 100%;
    height: 100%;
}


/* =========================================================
   NOTICIAS
========================================================= */

.ac-hm-destacados-item {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 40px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .6s ease,
        visibility .6s ease;
}

.ac-hm-destacados-item.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   OVERLAY
========================================================= */

.ac-hm-destacados-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.84) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.08) 100%
        );
}


/* =========================================================
   CONTENIDO
========================================================= */

.ac-hm-destacados-contenido {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;

    color: #fff;
}

.ac-hm-destacados-categoria {
    display: inline-block;

    margin-bottom: 8px;
    padding: 8px 15px;

    color: #fff;
    background: #d71920;

    border-radius: 3px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.ac-hm-destacados-titulo {
    margin: 0 0 10px;

    color: #fff;

    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1.05;
}

.ac-hm-destacados-descripcion {
    max-width: 580px;

    margin: 0 0 18px;

    color: rgba(255,255,255,.92);

    font-size: 14px;
    line-height: 1.45;
}


/* =========================================================
   BOTÓN
========================================================= */

.ac-hm-destacados-boton {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 14px;

    color: #fff;
    background: #d71920;

    border-radius: 3px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        transform .2s ease;
}

.ac-hm-destacados-boton:hover {
    color: #fff;
    background: #b51218;
    transform: translateY(-1px);
}


/* =========================================================
   CONTROLES
========================================================= */

.ac-hm-destacados-controles {
    position: absolute;
    z-index: 5;

    left: 40px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 7px;
}

.ac-hm-destacados-control {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.55);

    cursor: pointer;

    transition:
        width .2s ease,
        background .2s ease;
}

.ac-hm-destacados-control.active {
    width: 24px;
    border-radius: 5px;
    background: #fff;
}


/* =========================================================
   RADIO / TV
========================================================= */

.ac-hm-destacados-lateral {
    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 8px;

    width: 100%;
    height: 430px;
}

.ac-hm-destacados-card {
    position: relative;

    display: block;

    min-height: 0;

    overflow: hidden;

    border-radius: 4px;

    color: #fff;
    background: #111;

    text-decoration: none;
}

.ac-hm-destacados-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.ac-hm-destacados-card:hover img {
    transform: scale(1.05);
}

.ac-hm-destacados-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.12)
        );
}

.ac-hm-destacados-card-contenido {
    position: absolute;
    inset: 0;

    z-index: 2;

    padding: 18px;
}

.ac-hm-destacados-card-label {
    display: block;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
}

.ac-hm-destacados-card strong {
    display: block;

    margin-top: 2px;

    color: #fff;

    font-size: 20px;
    line-height: 1;
}

.ac-hm-destacados-card small {
    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 12px;
}


/* =========================================================
   PLAY
========================================================= */

.ac-hm-destacados-play {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 2px solid rgba(255,255,255,.85);
    border-radius: 50%;

    font-size: 15px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.ac-hm-destacados-card:hover .ac-hm-destacados-play {
    transform: scale(1.08);
    background: rgba(255,255,255,.12);
}


.ac-hm-destacados-card-texto {
    position: absolute;

    right: 18px;
    bottom: 18px;

    color: rgba(255,255,255,.92);

    text-align: right;

    font-size: 9px;
    font-weight: 600;
    line-height: 1.35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .ac-hm-destacados-slider {
        height: 400px;
    }

    .ac-hm-destacados-lateral {
        height: 220px;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .ac-hm-destacados-slider {
        height: 380px;
    }

    .ac-hm-destacados-item {
        padding: 25px 22px 50px;
    }

    .ac-hm-destacados-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.90) 0%,
                rgba(0,0,0,.45) 65%,
                rgba(0,0,0,.05) 100%
            );
    }

    .ac-hm-destacados-titulo {
        font-size: 28px;
    }

    .ac-hm-destacados-descripcion {
        font-size: 13px;
    }

    .ac-hm-destacados-controles {
        left: 22px;
        bottom: 20px;
    }

    .ac-hm-destacados-lateral {
        height: auto;

        grid-template-columns: 1fr;
        grid-template-rows: 180px 180px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 375px) {

    .ac-hm-destacados-slider {
        height: 360px;
    }

    .ac-hm-destacados-item {
        padding: 20px 18px 48px;
    }

    .ac-hm-destacados-titulo {
        font-size: 25px;
    }

    .ac-hm-destacados-descripcion {
        display: none;
    }

    .ac-hm-destacados-controles {
        left: 18px;
    }

}

/* =========================================================
   RADIO ANQARA - REPRODUCTOR
========================================================= */

.ac-hm-destacados-radio {
    cursor: default;
}


/* =========================================================
   ESTADO EN VIVO
========================================================= */

.ac-hm-destacados-radio-estado {

    position: absolute;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 5px 9px;

    color: #fff;
    background: rgba(0,0,0,.45);

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;

    opacity: .7;

    transition:
        background .3s ease,
        opacity .3s ease;
}


/* LED */

.ac-hm-destacados-radio-led {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #999;

}


/* =========================================================
   RADIO REPRODUCIENDO
========================================================= */

.ac-hm-destacados-radio.playing
.ac-hm-destacados-radio-estado {

    opacity: 1;

    background: rgba(215,25,32,.85);
}


.ac-hm-destacados-radio.playing
.ac-hm-destacados-radio-led {

    background: #fff;

    box-shadow:
        0 0 0 0 rgba(255,255,255,.8);

    animation:
        ac-radio-led 1.2s infinite;
}


@keyframes ac-radio-led {

    0% {
        box-shadow:
            0 0 0 0 rgba(255,255,255,.7);
    }

    70% {
        box-shadow:
            0 0 0 7px rgba(255,255,255,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255,255,255,0);
    }

}


/* =========================================================
   VISUALIZADOR DE AUDIO
========================================================= */

.ac-hm-destacados-visualizador {
    position: absolute;

    left: 70px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 3px;

    width: 42px;
    height: 28px;

    opacity: 0;

    transition:
        opacity .3s ease;
}


/* Barras */

.ac-hm-destacados-visualizador span {

    display: block;

    width: 3px;
    height: 8px;

    border-radius: 3px;

    background: #fff;

    transform-origin: center;

}


/* Activación */

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador {

    opacity: 1;
}


.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(1) {
    animation: ac-radio-bar .55s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(2) {
    animation: ac-radio-bar .75s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(3) {
    animation: ac-radio-bar .45s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(4) {
    animation: ac-radio-bar .8s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(5) {
    animation: ac-radio-bar .5s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(6) {
    animation: ac-radio-bar .7s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(7) {
    animation: ac-radio-bar .4s infinite ease-in-out;
}

.ac-hm-destacados-radio.playing
.ac-hm-destacados-visualizador span:nth-child(8) {
    animation: ac-radio-bar .65s infinite ease-in-out;
}


@keyframes ac-radio-bar {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 25px;
    }

}


/* =========================================================
   BOTÓN RADIO
========================================================= */

.ac-hm-radio-play {

    border: 2px solid rgba(255,255,255,.9);

    background: rgba(0,0,0,.15);

    cursor: pointer;

    z-index: 5;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}


.ac-hm-radio-play:hover {

    transform: scale(1.08);

    background: rgba(215,25,32,.85);

    border-color: #fff;

}


/* Icono */

.ac-hm-radio-icon {
    display: block;
    font-size: 14px;
    line-height: 1;
	color: #fff !important;
}


/* Cuando está reproduciendo */

.ac-hm-destacados-radio.playing
.ac-hm-radio-play {

    background: #d71920;

    border-color: #fff;

}


.ac-hm-destacados-radio.playing
.ac-hm-radio-icon {

    font-size: 13px;

}


/* =========================================================
   EFECTO IMAGEN CUANDO REPRODUCE
========================================================= */

.ac-hm-destacados-radio.playing img {

    transform: scale(1.035);

}


/* =========================================================
   PEQUEÑO EFECTO DE PULSO
========================================================= */

.ac-hm-destacados-radio.playing {

    box-shadow:
        0 0 0 rgba(215,25,32,0);

    animation:
        ac-radio-card-pulse 2s infinite;
}


@keyframes ac-radio-card-pulse {

    0% {
        box-shadow:
            0 0 0 rgba(215,25,32,0);
    }

    50% {
        box-shadow:
            0 0 18px rgba(215,25,32,.18);
    }

    100% {
        box-shadow:
            0 0 0 rgba(215,25,32,0);
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .ac-hm-destacados-radio-estado {

        top: 14px;
        right: 14px;

    }

    .ac-hm-destacados-visualizador {

        left: 68px;
        bottom: 19px;

    }

}

/* =========================================================
   PROGRAMA ACTUAL - RADIO
========================================================= */

.ac-hm-destacados-programa-actual {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 80%;

    text-align: center;

    color: #fff;

    z-index: 4;

    pointer-events: none;
}


/* ETIQUETA AHORA */

.ac-hm-destacados-programa-label {

    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.75);

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* NOMBRE DEL PROGRAMA */

.ac-hm-destacados-programa-nombre {

    display: block;

    color: #fff;

    font-size: clamp(18px, 2vw, 25px);

    font-weight: 600;

    line-height: 1.15;

    text-shadow:
        0 2px 8px rgba(0,0,0,.8),
        0 1px 2px rgba(0,0,0,.9);
}


/* PEQUEÑA LÍNEA DECORATIVA */

.ac-hm-destacados-programa-actual::after {

    content: "";

    display: block;

    width: 35px;
    height: 2px;

    margin: 8px auto 0;

    background: #d71920;

    border-radius: 2px;

}


/* ANIMACIÓN */

.ac-hm-destacados-programa-actual.activo
.ac-hm-destacados-programa-nombre {

    animation: acRadioPrograma 2s ease-in-out infinite;
}


@keyframes acRadioPrograma {

    0% {
        opacity: .85;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .85;
    }

}


/* =========================================================
   CUANDO NO HAY PROGRAMACIÓN
========================================================= */

.ac-hm-destacados-programa-actual.sin-programacion
.ac-hm-destacados-programa-nombre {

    font-size: 15px;

    font-weight: 500;

    opacity: .85;

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .ac-hm-destacados-programa-actual {

        width: 85%;

    }

    .ac-hm-destacados-programa-nombre {

        font-size: 18px;

    }

}

/* =========================================================
   PROGRAMA ACTUAL - EFECTO PERMANENTE
========================================================= */

.ac-hm-destacados-programa-nombre {
    display: block;

    color: #fff;

    animation: acRadioProgramaPulse 2s ease-in-out infinite;

}


/* =========================================================
   EFECTO PULSO / BRILLO
========================================================= */

@keyframes acRadioProgramaPulse {

    0%,
    100% {

        transform: scale(1);

        text-shadow:
            0 0 0 rgba(255,255,255,0);

    }

    50% {

        transform: scale(1.04);

        text-shadow:
            0 0 8px rgba(255,255,255,.45),
            0 0 18px rgba(255,255,255,.20);

    }

}