html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        background: #000;
        overflow: hidden;
    }
    .contenedor {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .slider img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    .slider img.activa {
        opacity: 1;
    }
    @keyframes zoomUp {
        0% { transform: scale(1) translateY(0); }
        100% { transform: scale(1.1) translateY(-2vh); }
    }
    @keyframes zoomDown {
        0% { transform: scale(1) translateY(0); }
        100% { transform: scale(1.1) translateY(2vh); }
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }
    .logo {
        position: absolute;
        top: 5vh;
        left: 50%;
        transform: translateX(-55%);
        z-index: 2;
        width: 50vw;
        height: auto;
        pointer-events: none;
    }
    .play-btn {
        position: absolute;
        bottom: 28vh;
        left: 50%;
        transform: translateX(-55%);
        z-index: 3;
        width: 25vw;
        height: 25vw;
        background: rgba(0,191,255,0.8);
        border: 3px solid white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .play-btn svg {
        width: 60%;
        height: 60%;
        fill: white;
    }
    .mensaje {
        position: absolute;
        bottom: 10vh; /* ajuste: un poquito más arriba como pediste */
        left: 50%;
        transform: translateX(-55%);
        background: transparent;
        color: black;
        font-family: Arial, sans-serif;
        font-weight: 900; /* Radio Jireh mucho más gruesa */
        font-size: 0.9em; /* mantiene el tamaño original */
        text-align: center;
        white-space: nowrap;
        z-index: 4;
    }
    .mensaje-secundario {
        font-size: 1.8em; /* Radio Jireh más grande */
        font-weight: 900; /* Radio Jireh mucho más gruesa */
        color: rgba(0,191,255,0.8); /* Celeste igual al botón */
        margin-top: 0.2em;
        line-height: 1;
    }
    .boton-rojo {
    position: absolute;
    bottom: 14vh;
    right: 10%;
    width: 10vw;
    height: 10vw;
    background-color: red;
    border-radius: 50%;
    border: 4px solid white;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mensaje {
    overflow: hidden; /* para que el texto que se mueva no se salga */
}
.scroll-text {
    display: inline-block;
    padding-left: 100%; /* arranca desde fuera de la vista a la derecha */
    animation: desplazamientoHorizontal 8s linear infinite;
    white-space: nowrap;
}
@keyframes desplazamientoHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.web-texto {
    position: absolute;
    bottom: 2vh;
    left: 0;
    font-size: 1em;
    font-weight: bold;
    color: white;
        padding: 5px 10px;
    z-index: 10;
    white-space: nowrap;

    font-family: 'Arial Black', Arial, sans-serif;
    font-style: italic;}


.redes-sociales {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
    padding-left: 5px;
}
.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6vw;
    height: 6vw;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 3px solid white;
}
.redes-sociales a img {
    width: 6vw;
    height: 6vw;
}
.redes-sociales a.facebook { background-color: #1877F2; }

.redes-sociales a.telegram { background-color: #0088cc; }





.redes-sociales a.instagram { background-color: #E1306C; }
.redes-sociales a.instagram img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.redes-sociales a.tiktok img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}


.redes-sociales a.youtube img { width: 100%; height: 100%; object-fit: contain; }


.redes-sociales {
    position: absolute;
    top: 70%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}
.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6vw;
    height: 6vw;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 3px solid white;
    overflow: hidden;
}
.redes-sociales a img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.redes-sociales a.facebook { background-color: #1877F2; }

.redes-sociales a.telegram { background-color: #0088cc; }




.redes-sociales a.youtube img {
    width: 60%;
    height: 60%;
}



.redes-sociales a.instagram { background-color: #E1306C; }
.redes-sociales a.instagram img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.redes-sociales a.tiktok img {
    width: 60%;
    height: 60%;
}


.redes-sociales a {
    position: relative;
    overflow: visible;
}
.redes-sociales a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: onda 1.5s infinite ease-out;
}
@keyframes onda {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


.boton-compartir {
    position: absolute;
    bottom: 1vh;
    right: 5vw;
    width: 6vw;
    height: 6vw;
    background-color: transparent;
    border: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton-compartir img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.boton-live {
    position: absolute;
    z-index: 100;
    width: 55px;
    right: 0;
    top: 15.5%;
}
.boton-mensaje {
    position: absolute;
    right: 5vw;
    width: 2.5vw;
    height: 4vw;
    background-color: transparent;
    border: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton-mensaje img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.menu-lateral {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}
.menu-lateral.abierto {
    left: 0;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}
.menu-overlay.visible {
    display: block;
}
.menu-header {
    text-align: center;
    background: var(--bg-gradient);
}
.menu-logo {
    width: 35vw;
}
.menu-lista-inicio {
    list-style: none;
    padding-top: 8px;
    margin: 0;
}
.menu-lista-inicio li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: black;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.menu-lista-inicio li a img {
    width: 20px;
    height: 20px;
    margin-right: 33px;
}
.menu-lista-inicio li a svg {
    width: 20px;
    height: 20px;
    margin-right: 33px;
}
.menu-lista {
    list-style: none;
    margin: 0;
}
.menu-lista li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.menu-lista li a img {
    width: 20px;
    height: 20px;
    margin-right: 33px;
}
.menu-lista li a svg {
    width: 20px;
    height: 20px;
    margin-right: 33px;
}


.menu-lista-inf {
    list-style: none;
    padding-top: 1px;
    margin: 0;
}
.menu-lista-inf li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.menu-lista-inf li a img {
    width: 20px;
    height: 20px;
    margin-right: 33px;
}
.menu-lista-inf li a svg {
    width: 20px;
    height: 20px;
    margin-right: 33px;
    margin-bottom: 1px;
}
.menu-lateral h4 {
    padding: 17px 16px 18px;
    margin: 9px 0px 0px 0px;
    color: #686868;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 1px solid #e6e6e6;
}


.chat-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.chat-contenido {
    margin: 5% auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    position: fixed;
    width: 90%;
    max-width: 500px;
}
.cerrar-chat {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.cerrar-chat:hover {
    color: red;
}


.web-side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 3000;
    transition: right 0.3s ease;
}
.web-side-panel.abierto {
    right: 0;
}
.web-side-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2999;
    display: none;
}
.web-side-overlay.visible {
    display: block;
}
.web-side-panel iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.web-side-close-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    z-index: 3100;
    background: transparent;
}



/* --- Ajustes de diseño fluido --- */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.logo {
    width: 40vw;
    max-width: none;
    height: auto;
}

.play-btn {
    width: 18vw;
    height: 18vw;
}

.boton-rojo {
    width: 12vw;
    height: 12vw;
}

.redes-sociales a {
    width: 6vw;
    height: 6vw;
}

.mensaje {
    font-size: 2.5vw;
}

.mensaje-secundario {
    font-size: 4vw;
}

.slider img {
    object-fit: cover;
}

/* Pantallas pequeñas */
@media (max-width: 400px) {
    .logo {
        width: 50vw;
    }
    .play-btn {
        width: 20vw;
        height: 20vw;
    }
    .boton-rojo {
        width: 14vw;
        height: 14vw;
    }
}

/* Pantallas grandes */
@media (min-width: 768px) {
    .logo {
        width: 30vw;
    }
    .play-btn {
        width: 15vw;
        height: 15vw;
    }
}


/* --- Versión fluida más grande --- */
.logo {
    width: 55vw; /* antes 40vw */
}

.play-btn {
    width: 25vw; /* antes 18vw */
    height: 25vw;
}

.boton-rojo {
    width: 18vw; /* antes 12vw */
    height: 18vw;
}

.redes-sociales a {
    width: 8vw; /* antes 6vw */
    height: 8vw;
}

.mensaje {
    font-size: 3vw; /* antes 2.5vw */
}

.mensaje-secundario {
    font-size: 5vw; /* antes 4vw */
}

.slider img {
    object-fit: cover;
}

/* Pantallas pequeñas */
@media (max-width: 400px) {
    .logo {
        width: 65vw;
    }
    .play-btn {
        width: 30vw;
        height: 30vw;
    }
    .boton-rojo {
        width: 20vw;
        height: 20vw;
    }
    .redes-sociales a {
        width: 9vw;
        height: 9vw;
    }
}

/* Pantallas grandes */
@media (min-width: 768px) {
    .logo {
        width: 40vw;
    }
    .play-btn {
        width: 20vw;
        height: 20vw;
    }
    .boton-rojo {
        width: 15vw;
        height: 15vw;
    }
    .redes-sociales a {
        width: 7vw;
        height: 7vw;
    }
}


/* Botones de redes sociales más grandes */
.redes-sociales a {
    width: 10vw; /* antes 8vw */
    height: 10vw;
}

@media (max-width: 400px) {
    .redes-sociales a {
        width: 12vw; /* antes 9vw */
        height: 12vw;
    }
}

@media (min-width: 768px) {
    .redes-sociales a {
        width: 9vw; /* antes 7vw */
        height: 9vw;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

        :root {
	--primary: #000000;
	--bg-gradient: #000000;
	--bg-zonaradio:  #ffffff;
	--bg-body: #262626;
	--bg-app: #0a0a0a;
	--bg-inset: #404040;
	--bg-transparent: rgb(255 255 255 / 10%);
	--bg-modal: rgb(255 255 255 / 20%);
	--bg-dark: rgb(0 0 0 / 75%);
	--color-title: #ffffff;
	--color-text: rgb(255 255 255 / 50%);
	--duration: 0.3s;
	--container: 1480px;
	--spacer: 1rem;
	--shadow-l: 0px 8px 17px 2px rgba(0,0,0,0.14) , 0px 3px 14px 2px rgba(0,0,0,0.12) , 0px 5px 5px -3px rgba(0,0,0,0.2);
	--shadow-xl: 0px 16px 24px 2px rgba(0,0,0,0.14) , 0px 6px 30px 5px rgba(0,0,0,0.12) , 0px 8px 10px -7px rgba(0,0,0,0.2);
	--scrollbar-color: rgb(255 255 255 / 50%);
	--main-padding: 1rem;
  }


@font-face {
	font-family: "montserrat-light";
	font-display: swap;
	src: url("../_css/font/montserrat-light.eot");
	src: url("../_css/font/montserrat-light.eot?#iefix")format("embedded-opentype"), url("../_css/font/montserrat-light.woff")format("woff"), url("_css/font/montserrat-light.ttf")format("truetype");
	font-weight: 300;
	font-style: normal;
	font-stretch: normal
}

@font-face {
	font-family: "montserrat-bold";
	font-display: swap;
	src: url("../_css/font/montserrat-bold.eot");
	src: url("../_css/font/montserrat-bold.eot?#iefix")format("embedded-opentype"), url("../_css/font/montserrat-bold.woff")format("woff"), url("_css/font/montserrat-bold.ttf")format("truetype");
	font-weight: bold;
	font-style: normal;
	font-stretch: normal 
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline-style: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: rgb(0 0 0 / 10%);
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none
}

.i {
	stroke-width: var(--i-stroke, 2);
	width: var(--i-size, 34px);
	height: var(--i-size, 34px);
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: white;
}

html {
	width: 100%;
	height: 100%
}

body {
	--ratio: 1;
	width: 100%;
	height: 100%;
	font-family: "montserrat-light", Arial, Helvetica, sans-serif;
	font-size: 1vw;
	font-weight: normal;
	color: #252525;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	position: relative;
	overflow: hidden;
	background: #000;
}

::selection {
	background: #252525;
	color: #ffffff
}

::-moz-selection {
	background: #252525;
	color: #ffffff
}

::-webkit-selection {
	background: #252525;
	color: #ffffff
}

::-webkit-scrollbar {
	display: none
}

textarea::-moz-placeholder {
	color: rgba(0, 0, 0, .3)
}

textarea::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .3)
}

textarea:-ms-input-placeholder {
	color: rgba(0, 0, 0, .3)
}

input::-moz-placeholder {
	color: rgba(0, 0, 0, .3)
}

input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .3)
}

input:-ms-input-placeholder {
	color: rgba(0, 0, 0, .3)
}

svg,
img,
iframe,
video,
audio,
picture {
	overflow: visible;
	vertical-align: middle;
	position: relative
}

a:link,
a:visited {
	color: #252525;
	text-decoration: underline
}

a:hover,
a:hover.visited {
	text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #111111;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	display: block;
	text-align: left;
	text-transform: none;
	letter-spacing: -.1vw;
	line-height: 1;
	margin: 0 0 1vw 0;
	position: relative
}

h1,
.h1 {
	font-size: 2.3vw;
	line-height: 1;
	letter-spacing: -.1vw
}

h2,
.h2 {
	font-size: 2vw;
	line-height: 1;
	letter-spacing: -.07vw
}

h3,
.h3 {
	font-size: 1.7vw;
	line-height: 1;
	letter-spacing: -.04vw
}

h4,
.h4 {
	font-size: 1.4vw;
	line-height: 1;
	letter-spacing: -.03vw
}

h5,
.h5 {
	font-size: 1.2vw;
	line-height: 1;
	letter-spacing: -.03vw
}

h6,
.h6 {
	font-size: 1vw;
	line-height: 1;
	letter-spacing: -.02vw
}

p {
	margin: 0 0 .8vw 0;
	font-size: 1vw;
	font-weight: normal;
	text-align: justify;
	display: block;
	line-height: 1.6;
	color: #252525;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	position: relative
}

small,
small * {
	font-size: .5vw;
	color: #252525;
	text-align: left
}

strong,
b,
.bold {
	font-weight: normal;
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif
}

br {
	font-size: 0
}

br[clear="all"] {
	line-height: 0;
	font-size: 0;
	margin: 0;
	padding: 0
}

hr {
	display: block;
	margin: 1vw 0;
	font-size: 0;
	text-indent: -9999;
	width: 100%;
	height: 1px;
	border: 0;
	position: relative;
	background: linear-gradient(to right, rgba(0, 0, 0, 0)0%, rgba(0, 0, 0, 1)10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0)100%)
}

table {
	border-collapse: collapse;
	margin: 0 0 .8vw 0;
	width: 100%;
	table-layout: fixed;
	border-top: 4px solid rgba(0, 0, 0, 1)
}

table tr {
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1)
}

table tr:nth-child(2n+1) {
	background: rgba(0, 0, 0, .01)
}

table td {
	padding: 1vw;
	vertical-align: middle;
	text-align: center
}

table th {
	padding: 1vw;
	vertical-align: middle;
	text-align: left;
	text-transform: uppercase;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif;
	background: rgba(0, 0, 0, .03)
}

ul,
ol {
	padding: 0;
	margin: 1vw 0;
	overflow: hidden;
	list-style-type: disc;
	font-size: .9vw
}

ol {
	list-style-type: decimal
}

ul li {
	padding: 0;
	
	text-align: left
}

ol li {
	padding: 0;
	margin: 0 0 .5vw 2vw;
	list-style-type: decimal;
	text-align: left
}

ul li ul,
ol li ol {
	margin: .5vw 0 0
}

ul li:last-child,
ol li:last-child {
	
}

.nowrap {
	white-space: nowrap
}

.text-align-left {
	text-align: left !important
}

.text-align-center {
	text-align: center !important
}

.text-align-right {
	text-align: right !important
}

.text-align-justify {
	text-align: justify !important
}

.vertical-align-top {
	vertical-align: top !important
}

.vertical-align-middle {
	vertical-align: middle !important
}

.vertical-align-bottom {
	vertical-align: bottom !important
}

.text-decoration-none {
	text-decoration: none !important
}

.text-transform-uppercase {
	text-transform: uppercase !important
}

.width-5p {
	width: 5% !important
}

.width-10p {
	width: 10% !important
}

.width-15p {
	width: 15% !important
}

.width-20p {
	width: 20% !important
}

.width-25p {
	width: 25% !important
}

.width-30p {
	width: 30% !important
}

.width-35p {
	width: 35% !important
}

.width-40p {
	width: 40% !important
}

.width-45p {
	width: 45% !important
}

.width-50p {
	width: 50% !important
}

.width-55p {
	width: 55% !important
}

.width-60p {
	width: 60% !important
}

.width-65p {
	width: 65% !important
}

.width-70p {
	width: 70% !important
}

.width-75p {
	width: 75% !important
}

.width-80p {
	width: 80% !important
}

.width-85p {
	width: 85% !important
}

.width-90p {
	width: 90% !important
}

.width-95p {
	width: 95% !important
}

.width-100p {
	width: 100% !important
}

.width-auto {
	width: auto !important
}

.padding-0 {
	padding: 0 !important
}

.margin-0 {
	margin: 0 !important
}

.display-none {
	display: none !important
}

.display-inline {
	display: inline !important;
	overflow: hidden !important
}

.display-block {
	display: block !important;
	overflow: hidden !important
}

.display-inline-block {
	display: inline-block !important
}

.overflow-hidden {
	overflow: hidden !important
}

.overflow-visible {
	overflow: visible !important
}

.position-relative {
	position: relative !important
}

.position-absolute {
	position: absolute !important
}

.clear-both {
	clear: both
}

.background-none {
	background: none !important
}

.border-0 {
	border: 0 !important
}

.opacity-0 {
	opacity: 0 !important
}

.opacity-1 {
	opacity: 1 !important
}

.lazyload,
.lazyloading {
	opacity: 0
}

.lazyloaded {
	opacity: 1;
	transition: opacity 1s !important
}

ul.cols {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: visible !important;
	list-style-type: none
}

ul.cols>li {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding: 0;
	margin: 0
}

ul.cols>li.blank {
	width: 1.84vw
}

ul.cols.body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: table !important;
	z-index: 1
}

ul.cols.body>li {
	display: table-row !important
}

ul.cols.body>li:nth-child(1) {}

ul.cols.body>li:nth-child(2) {
	height: 100%
}

ul.cols.body>li:nth-child(2) div.container {
	width: 100%;
	height: 100%;
	position: relative;
	vertical-align: middle;
	display: table
}

ul.cols.body>li:nth-child(2) div.container div.radio {
	display: table-cell;
	vertical-align: middle
}

ul.cols.body>li:nth-child(3) {
	vertical-align: bottom
}

section {
	position: relative;
	width: 100%;
	height: 100%;
	min-width: 100% !important;
	min-height: 100% !important;
	overflow-x: hidden;

	overflow-y: scroll;
	padding-bottom: 40vw
}

img.logo {
	position: absolute;
	z-index: 99;
	width: 10vw;
	left: 3vw;
	top: 3vw
}

div.bg {
	position: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

}



div.bg div.placeholder img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(12px);
	animation: bga 60s linear infinite;
	opacity: 0.8;
}

@keyframes bga {
	50% {
		transform: scale(2)
	}
}

div.cd {
	position: absolute;
	z-index: 10;
	width: 50vh;
	height: 50vh;
	background: linear-gradient(140deg, #a92bcd, #439bc1);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 1vw;
	box-shadow: 0px 0px 5vw rgba(0, 0, 0, .15);
	overflow: hidden
}

div.cd div.images {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

div.cd div.images.on {
	transform: translateX(-100%)
}

div.cd div.images img {
	width: auto;
	height: 100%;
	position: absolute;
	top: 0
}

div.cd div.images img:nth-child(1) {
	left: 0
}

div.cd div.images img:nth-child(2) {
	left: 100%
}

div.title {
	position: absolute;
	z-index: 10;
	left: 50%;
	top: 0;
	color: #ffffff;
	/* text-shadow: 0 .052vw .052vw rgba(0,0,0,1);*/
	font-size: 2vw;
	font-family: "montserrat-bold";
	font-size: 2vw;
	line-height: 1;
	letter-spacing: -.07vw;
	/*width: 60vw;*/
	height: 25vh;
	transform: translateX(-50%);
	text-align: center;
	overflow: hidden
}



div.title span.artist {
	font-size: 1vw;
	text-transform: uppercase;
	letter-spacing: .156vw;
	white-space: nowrap;
	opacity: .6;
	display: block
}

div.title span.song {
	display: block;
	width: 100%;
	margin-top: .3vw;
	white-space: nowrap
}
/* FORMATO PC */
.bg-degrade {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: var(--primary);*/
    z-index: 2;
}
.marqueet {
	height: 25px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
  }
  
  .marqueet div {
	display: block;
   
	width: 200%;
	height: 20px;
    position: absolute;
	overflow: hidden;
    animation: marqueet 5s linear infinite;
  }
  
  .marqueet span {
      display: inline-block;
	float: left;
	font-size: 19px;
    color: white;
    font-family: sans-serif;
    font-weight: 600;
	width: 50%;
  }
  
  @keyframes marqueet {
      0%   { transform: translateX(50%); }
      100% { transform: translateX(-50%); }
    }
#meta-art {
    color: white; z-index: 10; position: absolute; left: 24%; top: -50px;
}
.ciudad_nombre {
    font-weight: bold;
    width: 200px;
    color: white;
    height: 25px;
    font-size: 15px;
    top: 2px;
    position: relative;
    text-align: center;
}
/* Estilos del contenedor del ecualizador */
.equalizer {
	display: flex;
	right: 46% !important;
	align-items: flex-end;
	justify-content: center;
	gap: 3px;
	height: 18px;
	width: 28px;
	margin: 20px auto;
	top: -84px !important;
}

/* Estilos de las barras */
.bar {
	width: 15px;
	background: var(--bg-zonaradio);
	transition: height 0.3s ease;
	/* TransiciÃ³n mÃ¡s suave para la altura */
} 
.datosgif {
  transition: opacity 0.3s ease;
  opacity: 1;
  position: fixed;
  width: 25%;
  bottom: 7%; /* Ajusta para subir o bajar la barra */
  text-align: center;
  padding: 0px 50px 0px 50px;
  transform: translateX(100%);
  z-index: 9;
}
.megasocial1 {
    position: fixed;
    bottom: 260px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.boton-menu {
    position: absolute;
    left: 3vw;
    width: 4.5vw;
    height: 8vw;
    background-color: transparent;
    border: none;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
}
div.time {
	position: fixed;
	right: 44%;
	z-index: 10;
	text-shadow: 0 .052vw 0.052vw rgba(0, 0, 0, 1);
	background: rgba(255, 255, 255, .1);
	border-radius: 100px;
	padding: 1vw 1.2vw;
	opacity: 0;
	animation: .5s ta 1s linear forwards
}

div.time span {
	display: inline-block;
	font-family: "montserrat-bold";
	text-decoration: none;
	font-size: 1.5vw;
	color: #ffffff;
	text-shadow: 0 .052vw .052vw rgba(0, 0, 0, 1);
	width: 1.02vw;
	text-align: center;
	line-height: 1
}

div.time span:nth-child(3),
div.time span:nth-child(6) {
	animation: tad 1s linear infinite
}

@keyframes tad {
	50% {
		opacity: 0
	}
}

@keyframes ta {
	100% {
		opacity: 1
	}
}

div.cent a {
	font-family: "montserrat-bold";
	text-decoration: none;
	font-size: 1.2vw;
	display: inline-block;
	color: #ffffff;
	background: none;
	line-height: 1;
	padding: 1vw 1.2vw 1vw 3.6vw;
	text-transform: uppercase;
	border-radius: 100px;
	position: relative;
	background: rgba(255, 255, 255, .1)
}

div.cent a:hover {
	background: rgba(255, 255, 255, .3)
}

div.cent a:before {
	content: "";
	position: absolute;
	left: .2vw;
	top: 50%;
	width: 2.8vw;
	height: 2.8vw;
	transform: translateY(-50%);
	border-radius: 100px;
	color: #ffffff;
	text-align: center;
	line-height: 1.7;
	font-size: 1.5vw;
	font-family: "montserrat-bold";
	background-image: url(../_img/coin.gif);
	background-size: cover
}

div.price {
	position: fixed;
	left: 3vw;
	bottom: 9vw;
	z-index: 10
}

div.price a {
	font-family: "montserrat-bold";
	text-decoration: none;
	font-size: 1.2vw;
	display: inline-block;
	color: #ffffff;
	background: none;
	line-height: 1;
	padding: 1vw 1.2vw 1vw 3.6vw;
	text-transform: uppercase;
	border-radius: 100px;
	position: relative;
	background: rgba(255, 255, 255, .1)
}

div.price a:hover {
	background: rgba(255, 255, 255, .3)
}

div.price a:before {
	content: "";
	position: absolute;
	left: .3vw;
	top: 50%;
	width: 2.7vw;
	height: 2.7vw;
	transform: translateY(-50%);
	border-radius: 100px;
	color: #ffffff;
	text-align: center;
	line-height: 1.7;
	font-size: 1.5vw;
	font-family: "montserrat-bold";
	background-image: url(../_img/price.gif);
	background-size: cover
}

div.quality {
	position: relative;
	display: inline-block;
	margin-bottom: 1rem;
}

div.quality label.switch {
	position: relative;
	display: inline-block;
	width: calc(4.5vw * var(--ratio));
	height: calc(2.7vw * var(--ratio));
}

div.quality label.switch:after {
	position: absolute;
	left: calc(5.5vw * var(--ratio));
	top: 50%;
	transform: translateY(-50%);
	content: "Baja Calidad";
	font-size: calc(.79vw * var(--ratio));
	line-height: .9;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "montserrat-bold", Arial, Helvetica, sans-serif
}

div.quality label.switch input {
	cursor: pointer;
	transition: .3s;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background: rgba(255, 255, 255, .3);
	border-radius: 2000px
}

div.quality label.switch span {
	cursor: pointer;
	transition: transform .3s;
	position: absolute;
	z-index: 2;
	display: inline-block;
	top: 0;
	margin: calc(.2vw * var(--ratio));
	width: calc(2.3vw * var(--ratio));
	height: calc(2.3vw * var(--ratio));
	background: #ffffff;
	border-radius: 2000px;
	overflow: hidden;
	filter: drop-shadow(0 0 2px rgba(0, 0, 0, .2))
}

div.quality label.switch input:checked {
	background: #55a3f8
}

div.quality label.switch input:checked~span {
	transform: translateX(calc(1.8vw * var(--ratio)))
}

div.controls {
	position: absolute;
	z-index: 500;
	left: 50%;
	bottom: 0;
	width: 52vh;
	height: 25vh;
	transform: translateX(-50%);
	text-align: center;
	overflow: show
}

div.controls ul.cols.controls {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto !important
}

div.content {
	position: fixed;
	left: 99999px;
	top: 99999px
}

/* div.play {
	display: block!important;
	width: 5vw!important;
	height: 5vw!important;
	z-index: 99!important;
	position: relative!important;
	background: none;
	margin-right: 1vw;
	position: relative
}

div.play div.loading {
	width: 120%;
	height: 120%;
	left: -10%;
	top: -10%;
	position: absolute;
	z-index: 1;
	opacity: 0;
	transition: all .5s;
	transform: scale(0)
}

div.play div.loading.on {
	opacity: 1!important;
	transform: scale(1)
}

div.play div.loading img {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 5px #ffffff)
}

div.play img[src*="play"],div.play img[src*="stop"] {
	width: 100%;
	height: 100%;
	transition: all .2s;
	position: relative;
	z-index: 2;
	cursor: pointer!important
}

div.play:hover img[src*="play"],div.play:hover img[src*="stop"] {
	filter: drop-shadow(0 0 .208vw #ffffff)
}

div.play img[src*="play"] {
	display: block!important
}

div.play img[src*="stop"] {
	display: none!important
}

div.play.on img[src*="play"] {
	display: none!important
}

div.play.on img[src*="stop"] {
	display: block!important
} */

div.volume {
	position: relative !important;
	z-index: 99 !important;
	width: 37.5vh
}

div.volume ul.cols li:nth-child(1) {
	width: .82vw
}

div.volume ul.cols li:nth-child(2) {
	padding: 0 1vw
}

div.volume ul.cols li:nth-child(3) {
	width: 2vw
}

div.volume input {
	width: 100%;
	vertical-align: middle
}

div.volume input[type=range] {
	height: 2vw !important;
	-webkit-appearance: none !important;
	margin: 0 0 !important;
	width: 100% !important;
	background: none !important
}

div.volume input[type=range]:focus {
	outline: none !important
}

div.volume input[type=range]::-webkit-slider-runnable-track {
	width: 100% !important;
	height: .1vw !important;
	background: #ffffff !important;
	border: none;
	border-radius: 5px !important
}

div.volume input[type=range]::-webkit-slider-thumb {
	height: 1.5vw !important;
	width: 1.5vw !important;
	border-radius: 100px !important;
	background: #ffffff !important;
	cursor: pointer !important;
	-webkit-appearance: none !important;
	margin-top: -.7vw !important;
	border: .1vw solid #ffffff !important;
	transition: filter .2s
}

div.volume input[type=range]::-webkit-slider-thumb:hover {
	filter: drop-shadow(0 0 .208vw rgba(255, 255, 255, .7))
}

div.volume input[type=range]::-moz-range-thumb {
	height: 1.5vw !important;
	width: 1.5vw !important;
	border-radius: 100px !important;
	background: #ffffff !important;
	cursor: pointer !important;
	-webkit-appearance: none !important;
	margin-top: -.7vw !important;
	border: .1vw solid #ffffff !important;
	transition: filter .2s
}

div.volume input[type=range]::-moz-range-thumb:hover {
	filter: drop-shadow(0 0 .208vw rgba(255, 255, 255, .7))
}

div.volume input[type=range]:focus::-webkit-slider-runnable-track {
	background: #ffffff !important;
	border: 0px !important
}

div.volume input[type=range]::-moz-range-track {
	width: 100% !important;
	height: .1vw !important;
	cursor: pointer !important;
	box-shadow: 0px 0px 0px !important;
	background: #ffffff !important;
	border-radius: 5px !important;
	border: 0px !important
}

div.volume img[src*="volume0"] {
	width: .82vw
}

div.volume img[src*="volume100"] {
	width: 2vw
}

svg.loading {
	position: absolute;
	width: 100%;
	height: 50vh;
	top: 50%;
	transform: translate(0%, -50%);
	opacity: .8
}

svg.loading text {
	font-family: "montserrat-bold";
	font-size: 2.8vw;
	text-transform: uppercase;
	fill: #ffffff
}

footer {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 3vw;
	width: 100%;
	z-index: 9
}

footer p {
	margin: 0;
	font-size: .8vw;
	color: #ffffff;
	line-height: 1.5;

}

footer a {
	color: #ffffff !important;
	opacity: .9
}

footer a[href*="pdf"] {
	display: block;
	background: url(../_img/pdf.svg) left top no-repeat;
	height: 3.5vw;
	padding: 0 0 0 4.7vw;
	color: #ffffff !important;
	font-size: 1.2vw;
	text-decoration: none;
	font-family: "montserrat-bold";
	text-transform: uppercase;
	width: 10vw;
	line-height: 1;
	margin-bottom: 2vw;
	transition: all .2s
}

footer a[href*="pdf"]:hover {
	filter: drop-shadow(0 0 .208vw rgba(255, 255, 255, .7))
}

div.app {
	display: block;
	margin-bottom: 1vw
}

div.app a {
	display: inline-block
}

div.app a:nth-child(1) {
	margin: 0 2vw 0 0
}

div.app a img {
	width: auto;
	height: 3vw;
	transition: filter .2s
}

div.app a:hover img {
	filter: drop-shadow(0 0 .208vw rgba(255, 255, 255, .7))
}

div.megasocial {
	position: absolute;

	right: 3vw
}

div.megasocial ul {
	display: inline-block !important;
	width: auto !important;
	list-style-type: none !important
}

div.megasocial ul li {
	margin-left: 4px;
	height: auto !important;
	padding-left: 1vw;
	position: relative;
	display: inline-block !important
}

div.megasocial ul li:first-child {
	padding-left: 0 !important
}

div.megasocial ul li a {
	background: none !important;
	padding: 1.8vw !important;
	border-radius: 100px;
	display: inline-block !important;
	width: 10vw !important;
	height: 10vw !important;
	transition: filter .2s;
	line-height: 1
}

div.megasocial ul li a:hover {
	filter: drop-shadow(0 0 .208vw #ffffff)
}

div.megasocial ul li img {
	width: 100% !important;
	height: 100% !important
}

nav {
	display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-gradient);
    height: 4vw;
    z-index: 5;
    overflow: hidden;
    transition: all .5s;
}

div.eq {
	position: absolute;
	width: 100%;
	z-index: 2;
	top: 90%;
	transform: skew(0deg, 0deg) translate(-1vw, -50%);
	opacity: 0;
	overflow: hidden
}

div.eq.on {
	opacity: .3
}

div.popup {
	position: absolute !important;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(8px);
	transition: all .2s;
	background: rgba(0, 0, 0, .5);
	visibility: hidden;
	opacity: 0
}

div.popup.on {
	visibility: visible;
	opacity: 1;
	z-index: 4300;
}

div.popup img.price {
	width: auto;
	height: 92vh;
	border-radius: 1vw;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.popup-iframe {
	top: 50%;
	left: 50%;
	position: absolute;
	margin: auto;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 880px;
	padding: 1rem;
	background-color: rgb(255 255 255 / 20%);
	border-radius: 1rem;
}

.popup-iframe iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: auto;
}

span.close {
	position: fixed;
	right: 3vw;
	top: 3vw;
	width: 3.1vw;
	height: 3.1vw;
	z-index: 2;
	transition: all .2s;
	background: url(../_img/ico-close.svg);
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	z-index: 101;
	display: none;
	border-radius: 100px
}

span.close.on {
	display: flex;
	z-index: 4500;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 11%;
	left: 50%;
	transform: translate(-50%, -50%);
}

span.close:hover {
	filter: drop-shadow(0 0 .208vw #ffffff)
}

@media only screen and (max-device-width: 768px) and (max-device-height:1024px) and (orientation:portrait) {
	img.logo {
		width: 15vw
	}

	div.cd {
		border-radius: 1vw
	}

	svg.loading text {
		font-size: 8vw
	}

	/* div.play {
		width: 10vw!important;
		height: 10vw!important;
		margin-right: 2vw!important
	} */

	div.controls ul.cols.controls li:nth-child(2) {
		display: none !important
	}

	div.volume img[src*="volume0"] {
		width: 1.64vw !important
	}

	div.volume ul.cols li:nth-child(1) {
		width: 1.64vw !important
	}

	div.volume ul.cols li:nth-child(2) {
		padding: 0 2vw !important
	}

	div.volume ul.cols li:nth-child(3) {
		width: 4vw !important
	}

	div.volume img[src*="volume100"] {
		width: 4vw !important
	}

	div.volume input[type=range] {
		height: 4vw !important
	}

	div.volume input[type=range]::-webkit-slider-runnable-track {
		height: .2vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb {
		height: 3vw !important;
		width: 3vw !important;
		margin-top: -1.5vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb:hover {
		filter: drop-shadow(0 0 .624vw rgba(255, 255, 255, .7))
	}
}

@media only screen and (max-device-width: 1024px) and (max-device-height:1366px) and (orientation:portrait) {
	img.logo {
		width: 15vw
	}

	div.cd {
		border-radius: 2vw
	}

	svg.loading text {
		font-size: 6vw
	}

	/* div.play {
		width: 10vw!important;
		height: 10vw!important;
		margin-right: 2vw!important
	} */

	div.controls ul.cols.controls li:nth-child(2) {
		display: none !important
	}

	div.volume img[src*="volume0"] {
		width: 1.64vw !important
	}

	div.volume ul.cols li:nth-child(1) {
		width: 1.64vw !important
	}

	div.volume ul.cols li:nth-child(2) {
		padding: 0 2vw !important
	}

	div.volume ul.cols li:nth-child(3) {
		width: 4vw !important
	}

	div.volume img[src*="volume100"] {
		width: 4vw !important
	}

	div.volume input[type=range] {
		height: 4vw !important
	}

	div.volume input[type=range]::-webkit-slider-runnable-track {
		height: .2vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb {
		height: 3vw !important;
		width: 3vw !important;
		margin-top: -1.5vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb:hover {
		filter: drop-shadow(0 0 .624vw rgba(255, 255, 255, .7))
	}
}

@media only screen and (max-width: 640px) and (orientation:portrait) {
	body {
		padding-top: 14vw 0;
		padding: 0;
		overflow: hidden;
		/* Evita el desplazamiento de la pÃ¡gina */
	}

	body.off {
		overflow: hidden
	}

	nav {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: var(--bg-gradient);
		height: 13.3vw;
		z-index: 5;
		overflow: hidden;
		transition: all .5s
	}

	nav div.nav {
		position: relative;
		z-index: 1;
		display: block;
		width: 100%;
		height: 16.5vw;
		background: linear-gradient(140deg, #a92bcd, #439bc1);
		/*background-image: url(../_img/bg-nav.svg);*/
		background-position: 0 0;
		background-size: 100%;
		background-repeat: no-repeat;
	}

	/*nav:after{content:"";position:absolute;left:0;top:14vw;width:5vw;height:5vw;background:#ff0000;z-index:100}*/
	nav img[src*="logo"] {
		height: 8vw;
		position: absolute;
		left: 3vw;
		top: 3vw
	}

	div.menu {
		position: absolute;
		left: 0;
		top: 14vw;
		width: 56%;
		height: calc(100vh - 14vw);
		overflow: scroll;
		transform: translateY(-100%);
		transition: all .5s;
		background: linear-gradient(98deg, #1b1b1b, #1b1b1b);
	}

	div.menu p {
		color: #ffffff;
		font-size: 3vw;
		text-align: center;
		padding: 4vw;
		margin: 0;

	}

	div.menu a {
		color: #ffffff !important;
		opacity: .9
	}

	div.menu div.megasocial {
		position: relative;
		bottom: 0;
		right: 0;
		padding: 5vw;
		width: 100%;
		text-align: center
	}

	div.menu div.megasocial ul li a {
		width: 12vw !important;
		height: 12vw !important;
		padding: 3.5vw !important
	}

	div.menu div.megasocial ul li,
	div.megasocial ul li:first-child {
		padding: 0 1.3vw 1.3vw !important
	}

	div.menu div.version {
		padding: 0 8vw;
		color: #ffffff;
		width: 100%;
		text-align: center
	}

	nav.on {
		height: 100vh
	}

	nav.on div.menu {
		transform: translateY(0%)
	}

	div.menu a[href*="pdf"] {
		display: block;
		background: url(../_img/pdf.svg) 8vw 5vw no-repeat;
		background-size: 10vw;
		height: 20vw;
		padding: 6vw 5vw 5vw 22vw;
		color: #ffffff !important;
		font-size: 4vw;
		text-decoration: none;
		font-family: "montserrat-bold";
		text-transform: uppercase;
		width: 100%;
		line-height: 1;
		transition: all .2s;
		border-bottom: 1px solid rgba(255, 255, 255, .3)
	}

	div.menu a[href*="pdf"]:hover {
		filter: drop-shadow(0 0 .208vw rgba(255, 255, 255, .7))
	}

	div.app {
		padding: 5vw;
		border-bottom: 1px solid rgba(255, 255, 255, .3);
		border-top: 1px solid rgba(255, 255, 255, .3);
		margin: 10vw 0 0 0;
		text-align: center
	}

	div.app a:nth-child(1) {
		margin: 0 5vw 0 0
	}

	div.app a img {
		height: 12.6vw
	}
	/* FORMATO APP */
	.bg-degrade {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: var(--primary);*/
    z-index: 1;
}
	.marqueet {
	height: 30px;
	width: 290px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
  }
  
  .marqueet div {
	display: block;
   
	width: 200%;
	height: 30px;
    position: absolute;
	overflow: hidden;
    animation: marqueet 5s linear infinite;
  }
  
  .marqueet span {
    display: inline-block;
	float: left;
	font-size: 19px;
    color: white;
    font-family: sans-serif;
    font-weight: 600;
	width: 50%;
  }
  
  @keyframes marqueet {
      0%   { transform: translateX(50%); }
      100% { transform: translateX(-50%); }
    }
	/* Estilos del contenedor del ecualizador */
.equalizer {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 3px;
	height: 18px;
	width: 28px;
	margin: 20px auto;
	margin-top: -34px !important;
	right: 25px !important;
    top: 119px !important;
}

/* Estilos de las barras */
.bar {
	width: 15px;
	background: var(--bg-zonaradio);
	transition: height 0.3s ease;
	/* TransiciÃ³n mÃ¡s suave para la altura */
}
	.ciudad_nombre {
    font-weight: bold;
    width: 200px;
    color: white;
    height: 25px;
    font-size: 15px;
    top: 2px;
    position: relative;
    text-align: start;
}
	.title_nombre {
    width: 75%;
        top: 65.4px;
        font-size: 18px;
        animation: marquee5 5s linear infinite;
        color: white;
        font-family: sans-serif;
        font-weight: 600;
        height: 40px;
        left: 3px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        /* DIFUMINADO AL INICIO Y FINAL */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
        
}
@keyframes marquee5 {
  10% {
    left: 10%;
  }
  100% {
    left: -100%;
  }
  
}
.title_nombre span {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
}
	.boton-menu {
    position: absolute;
    top: 1.2vh;
    left: 3vw;
    width: 8.5vw;
    height: 8vw;
    background-color: transparent;
    border: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton-menu img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.boton-mensaje {
    position: absolute;
    top: 2vh;
    right: 5vw;
    width: 7vw;
    height: 7vw;
    background-color: transparent;
    border: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton-live {
    position: absolute;
    z-index: 100;
    width: 55px;
    right: 0;
    top: 9.5%;
}
#album-art {
    position: relative;
    z-index: 12;
    top: 17px;
    padding-left: 10%;
    padding-right: 10%;
    width: fit-content;
    margin: 0 auto;
}
#meta-art {
    color: white; z-index: 10; position: absolute; left: 5px; top: 100px;
}
.megasocial1 {
  position: fixed;
  bottom: -7px; /* Ajusta para subir o bajar la barra */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

	div.time {
		position: fixed;
		right: auto;
		left: 50%;
		top: 6px;
		transform: translateX(-50%);
		z-index: 100;
		padding: 2vw 3vw;
		line-height: .8
	}

	div.time span {
		font-size: 5vw;
		width: 3.3vw;
		text-shadow: 0 .15vw .15vw rgba(0, 0, 0, .3)
	}

	div.cent {
		margin: 2rem 2rem 0;
	}

	.footer-tool {
		margin: 1rem 2rem 0;
	}

	div.cent a {
		font-size: 4vw;
		padding: 3vw 3.6vw 3vw 10.8vw
	}

	div.cent a:before {
		width: 8vw;
		height: 8vw;
		left: .6vw
	}

	div.price {
		top: 4.5vw;
		left: 50%;
		transform: translateX(-50%);
		bottom: auto
	}

	div.price a {
		font-size: 5vw;
		padding: 3vw 3.6vw 3vw 11.2vw
	}

	div.price a:before {
		left: 1vw;
		width: 8.1vw;
		height: 8.1vw
	}

	div.quality {
		/* top: 15vw;
		left: 8vw; */
		bottom: auto;
		--ratio: 3.5
	}

	span.hamburger {
		display: block;
		width: 14vw !important;
		height: 14vw !important;
		position: absolute;
		right: 0;
		top: 0;
		cursor: pointer;
		z-index: 3
	}

	span.hamburger span {
		display: block;
		position: absolute;
		width: 60%;
		height: .5vw;
		left: 20%;
		background: #ffffff;
		transition: all .2s;
		transform-origin: 50% 50%
	}

	span.hamburger span:nth-child(1) {
		top: 30%
	}

	span.hamburger span:nth-child(2) {
		top: 50%;
		transition: all .5s
	}

	span.hamburger span:nth-child(3) {
		top: 70%
	}

	span.hamburger span:nth-child(4) {
		top: 50%;
		opacity: 1
	}

	span.hamburger span:nth-child(5) {
		top: 50%;
		opacity: 1
	}



	span.hamburger.on span:nth-child(1) {
		top: 50%;
		transition-delay: .2s;
		opacity: 0
	}

	span.hamburger.on span:nth-child(2) {
		width: 0px;
		left: 50%
	}

	span.hamburger.on span:nth-child(3) {
		top: 50%;
		transition-delay: .2s;
		opacity: 0
	}

	span.hamburger.on span:nth-child(4) {
		top: 50%;
		transition-delay: .4s;
		opacity: 1;
		transform: rotate(45deg)
	}

	span.hamburger.on span:nth-child(5) {
		top: 50%;
		transition-delay: .4s;
		opacity: 1;
		transform: rotate(-45deg)
	}

	img.logo {
		display: none
	}

	div.links {
		display: none
	}

	div.cd {
		width: 64vw;
		height: 64vw;
		border-radius: 3vw;
		left: 19vw;
		top: 30vw;
		transform: none;
	}

	div.title span.artist {
		font-size: 2.5vw
	}

	div.title span.song {
		margin-top: 1vw;
		white-space: normal
	}

	svg.loading {
		top: 98vw;
		height: 26vw
	}

	svg.loading text {
		font-size: 13vw
	}

	div.controls {
		top: 123vw;
		bottom: auto;
		height: 32vw !important;
		width: 100vw;
		border-bottom: 10vw solid rgba(255, 255, 255, 0)
	}

	div.controls ul.cols.controls li:nth-child(2) {
		display: none !important
	}

	div.controls div.play {
		margin: 0 !important
	}

	/* div.play {
		width: 18vw!important;
		height: 18vw!important;
		margin-right: 4vw!important
	} */

	div.volume img[src*="volume0"] {
		width: 2.56vw !important
	}

	div.volume ul.cols li:nth-child(1) {
		width: 2.56vw !important
	}

	div.volume img[src*="volume100"] {
		width: 5.99vw !important
	}

	div.volume ul.cols li:nth-child(3) {
		width: 5.99vw !important
	}

	div.volume {
		width: 62vw
	}

	div.volume ul.cols li:nth-child(2) {
		padding: 0 3vw !important
	}

	div.volume input[type=range]::-webkit-slider-runnable-track {
		height: .4vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb {
		height: 5vw !important;
		width: 5vw !important;
		margin-top: -2.5vw !important
	}

	div.volume input[type=range]::-webkit-slider-thumb:hover {
		filter: drop-shadow(0 0 1vw rgba(255, 255, 255, .7))
	}

	footer {
		display: none
	}

	div.eq {
		top: 143vw;
		z-index: 2;
		transform: none
	}

	div.popup {
		width: 100vw;
		height: 100vh;
		overflow-x: hidden;
		overflow-y: scroll;
		text-align: center;
		padding: 0vw;
	}

	div.popup img.price {
		width: 100%;
		height: auto;
		border-radius: 3vw;
		transform: none;
		position: relative;
		left: auto;
		top: auto
	}

	span.close {
		width: 14vw;
		height: 14vw;
		background-color: #7267c7
	}
}

.player-visualizer {
	position: fixed;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	opacity: .28;
	filter: url(#gooey);
	inset: auto -20px -20px;
	z-index: 1;
}

.visualizer-filter {
	display: none
}

@keyframes pulse {
	from {
		opacity: 0
	}

	50% {
		opacity: .2
	}

	to {
		transform: scale(1.5);
		opacity: 0
	}
}

.player-toggle {
	border-radius: 50rem;
	transition: opacity .3s, background-color .3s;
	padding: 1.20rem;
	margin-right: 1.5rem;
	color: #fff;
	position: relative;
	top: 05;
	cursor: pointer;
	--pulse-state: block;
}

.player-toggle.on {
	--pulse-state: block;
}

.player-toggle.on .i-play,
.player-toggle:not(.on) .i-pause {
	display: block;
}

.player-toggle:focus {
	outline: 0
}

.player-toggle::after,
.player-toggle::before {
	pointer-events: none;
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #fff;
	border-radius: 50%;
	z-index: -1;
	left: 0;
	top: 0;
	opacity: 0;
	animation: pulse 2s ease-out infinite;
	display: var(--pulse-state, none);
}

.player-toggle:after {
	animation-delay: 1s
}

.player-toggle:hover {
	opacity: .9;
	--pulse-state: block;
}

.popupHistory {
	z-index: 4200;
	position: fixed;
	padding: 2rem;
	height: 100vh;
	width: 100%;
	max-width: 480px;
	background-color: rgb(255 255 255 / 20%);
	backdrop-filter: blur(10px);
	overflow-y: auto;
	inset: 0;
	transition: transform .3s;
}

.history,
.history * {
	list-style: none;
	margin: 0;
}

.history-title {
	margin: 0;
	font-family: "montserrat-bold";
	color: #fff;
	background-color: rgb(255 255 255 / 10%);
	border-radius: 3rem;
	font-size: 14px;
	transition: background-color .3s;
}

.history-thumbnail {
	max-width: 50px;
	border-radius: 9999px;
	overflow: hidden;
}

.history-title span {
	margin-left: 1rem;
}

.history-title+* {
	margin: 4px 0 0 !important;
}

.history-title:hover {
	background: rgb(0 0 0 / 20%);
}

.popupHistory {
	scrollbar-color: rgb(255 255 255 / 75%);
	scrollbar-width: thin
}

.popupHistory:not(.is-active) {
	transform: translateX(-100%);
}

.popupHistory::-webkit-scrollbar {
	display: initial;
	width: 5px;
	height: 5px;
	background-color: transparent
}

.popupHistory::-webkit-scrollbar-track {
	background-color: rgb(255 255 255 / 10%);
	border-radius: 5px
}

.popupHistory::-webkit-scrollbar-thumb {
	background-color: rgb(255 255 255 / 75%);
	border-radius: 10px
}

.popupClose {
	margin-bottom: 1.5rem;
	background-color: rgb(255 255 255 / 20%);
	padding: .5rem;
	color: #fff;
	border-radius: 5rem;
	transition: background-color .3s;
	cursor: pointer;
}

.popupClose:hover {
	background-color: rgb(0 0 0 / 20%);
}

.footer-tool {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.5rem;
	width: 178px;
	padding: 4px;
	margin-left: 11px;
	margin-right: 23px;

}

.history-button {
	padding: .65rem 1.25rem;
	font-family: "montserrat-bold";
	color: #fff;
	background-color: rgb(255 255 255 / 10%);
	border-radius: 3rem;
	transition: background-color .3s;
	cursor: pointer;
}

.history-button:hover {
	background-color: rgb(0 0 0 / 20%);
}

.history-button svg {
	width: 20px;
}

.playerListeners {
	position: absolute;
	display: block;
	inset: auto 0 0;
	padding: 1rem;
	text-align: right;
	color: #fff;
	line-height: 1;
	font-family: "montserrat-bold";
	font-size: .875rem;
	text-shadow: 0 0.052vw 0.052vw rgb(0 0 0 / 80%);
	bottom: 0px;
}


.play.player-toggle .i-play {
	display: block;
}

.play.player-toggle .i-pause {
	display: none;
}

.play.player-toggle.playing .i-play {
	display: none;
}

.play.player-toggle.playing .i-pause {
	display: block;
}

.pie {
	position: fixed;
	/* Usa fixed en lugar de absolute */
	bottom: 0;
	background: var(--bg-gradient);
	height: 60px;
	width: 100%;
	z-index: 8;
}








@media only screen and (max-width: 640px) and (orientation: portrait) {
	nav div.nav {
		position: relative;
		z-index: 1;
		display: block;
		width: 100%;
		height: 15vw;
		background: var(--bg-gradient);
		/* background-image: url(../_img/bg-nav.svg); */
		background-position: 0 0;
		background-size: 100%;
		background-repeat: no-repeat;
	}

	div.menu {
		position: absolute;
		left: 0;
		top: 14vw;
		width: 56%;
		height: calc(100vh - 14vw);
		overflow: scroll;
		transform: translateY(-100%);
		transition: all .5s;
		background: var(--btn-bg, var(--bg-gradient));
	}
	.datosgif {
  transition: opacity 0.3s ease;
  opacity: 1;
  position: fixed;
  width: 100%;
  bottom: 8%; /* Ajusta para subir o bajar la barra */
  text-align: center;
  padding: 0px 50px 0px 50px;
  transform: translateX(-50%);
  z-index: 80;
}
}

:root {
	--offset: 0px;
	--move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
}
.marquee2 {
  width: 245px;              /* Ajusta el ancho según necesites */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#headerTitle {
  font-size: 15px;
  display: inline-block;     /* Esto asegura que funcione bien con el truncamiento */
}
.marquee {
	height: 25px;
	width: 245px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
  }
  
  .marquee div {
	display: block;
   
	width: 200%;
	height: 20px;
    position: absolute;
	overflow: hidden;
    animation: marquee 10s linear infinite;
  }
  
  .marquee span {
      display: inline-block;
	float: left;
	width: 50%;
  }
  
  @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-25%); }
    }
    



/*.marquee {
	height: 25px;
	width: 250px;
    overflow: hidden;
	position: absolute;	
  }
  
  .track {
	height: 205px;
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 10s linear infinite;
  }
  
  @keyframes marquee {
	from { transform: translateX(50%); }
	to { transform: translateX(0); }
  }/*
  
	.grid-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0px;
		width: 75%;
		margin: 0 auto;
		text-align: center;
		height: 91px;
	}

	/* Contenedor de cada imagen */
	.grid-item {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		/* Para evitar que las imÃ¡genes se desborden al escalar */
	}

	/* Estilo para las imÃ¡genes */
	.grid-item img {
		width: 75%;

		object-fit: cover;
		border-radius: 50%;
		transition: transform 0.3s ease-in-out;
		will-change: transform;
		/* Optimiza la animaciÃ³n */
	}

	/* Efecto exclusivo de ondas */
	.grid-item.active img {
		transform: scale(1.1);
		/* Imagen se agranda */
	}

	/* Efecto de borde animado en ondas */
	.grid-item.active::after {
		content: '';
		position: absolute;
		width: 62px;
		height: 62px;
		border: 4px solid rgb(255 255 255 / 31%);
		border-radius: 100%;
		animation: wave-border 1.2s infinite ease-in-out;
	}

	/* AnimaciÃ³n de ondas en el borde */
	@keyframes wave-border {
		0% {
			transform: scale(1);
			opacity: 1;
		}

		100% {
			transform: scale(1.5);
			opacity: 0;
		}
	}

	canvas {
		display: block;
	}



	/* Contenedor general para todos los sliders */
	.slider-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
		/* Espacio entre cada slider */
		width: 300px;
		/* Ajusta el tamaÃ±o total */
		margin: 0 auto;
	}

	/* Estilo para cada slider individual */
	.slider-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		/* Espacio entre el label, slider y valor */
	}

	/* Estilo del label */
	.slider-item label {
		font-size: 16px;
		font-weight: bold;
		color: #ffffff;
	}

	/* Estilo para los sliders */
	.slider-item input[type="range"] {
		width: 100%;
		height: 11px;
		-webkit-appearance: none;
		background: #6a32bb;
		border-radius: 5px;
		outline: none;
		cursor: pointer;
	}

	/* Estilo del marcador del slider (thumb) */
	.slider-item input[type="range"]::-webkit-slider-thumb {
		-webkit-appearance: none;
		appearance: none;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background: #700dff;
		/* Color del botÃ³n */
		cursor: pointer;
	}

	/* Estilo para mostrar el valor del slider */
	.slider-item span {
		font-size: 17px;
		color: #ffffff;
	}
	

	.player-artwork-style {
		/* background-color: var(--player-primary);*/
		 background-image: url(../../../../radioplayer.pro/finalnuevo/assets/default.html);
		 border-radius: 999px;
		 overflow: hidden;
		 width: 100%;
		 max-width: 190px;
		 display: flex;
		 aspect-ratio: 1/1
	 }
	 
	 .player-artwork-style img {
		 transition: transform calc(var(--duration) * 3)
	 }
	
	/* Info de la canciÃ³n */
	.song-info {
		margin-top: 15px;
	}

	.song-title {
		font-size: 22px;
		font-weight: bold;

	}

	.song-artist {
		font-size: 16px;
		opacity: 0.8;
	}
	.barscol {
		background: var(--bg-gradient);
        width: fit-content;
        color: white;
        height: 24px;
        font-size: 16px; 
        padding: 4px;
        font-weight: 600;
        top: 21px;
        position: relative;
	}
	.color-title {
    color: var(--color-title)
}





	  body {
		background-color: #121212;
	}
	

	  body {
		background-color: #121212;
	}

	.barscol {
		height: 60px;
	  }
	  
	  @media only screen and (min-width: 880px) {
		.barscol {
		  display: none;
		}
	  }

	  body {
		background-color: #121212;
	}
	

	.ls-is-cached {
		height: 60px;
	  }
	  
	  @media only screen and (min-width: 880px) {
		.ls-is-cached {
		  display: none;
		}
	  }

	  body {
		background-color: #121212;
	}


	.lottie{
		height: 60px;
	  }
	  
	  @media only screen and (min-width: 880px) {
		.lottie {
		  display: none;
		}
	  }

	  body {
		background-color: #121212;
	}
	

.barra-redes {
  padding: 55px 20px; /*AUNMENTA   SUBIR LAS REDES */
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.barra-redes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}

.barra-redes li a {
  display: block;
  width: 36px;
  height: 36px;
}

.barra-redes li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s;
}

.barra-redes li a:hover img {
  filter: drop-shadow(0 0 5px #fff);
}

.player-toggle2 {
    position: relative;
    display: inline-block;
    --pulse-state: block; /* Cambia a none si no quieres mostrar la animación */
}

.player-toggle2::after,
.player-toggle2::before {
    pointer-events: none;
    content: "";
    position: absolute;
    height: 90%;
    width: 90%;
    background-color: #fff;
    border-radius: 50%;
    z-index: -1;
    left: 9px;
    top: 9px;
    opacity: 0.5;
    animation: pulse 2s ease-out infinite;
    display: var(--pulse-state, none);
}

.player-toggle2::after {
    animation-delay: 1s;
}

@keyframes pulse {
	from {
		opacity: 0
	}

	50% {
		opacity: .2
	}

	to {
		transform: scale(1.5);
		opacity: 0
	}
}

#logoOrArtwork {
    animation: rotation 80s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#animContainer {
  width: 100%;
  height: 100%;
}
/* ============================================
   TV PLAYER - BOTONES CENTRADOS
   ============================================ */

.player-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.player-container {
    position: relative;
    width: 90vw;
    max-width: 600px;
    background-color: #000;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 2px solid #374151;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    background-color: #222;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* ========== BOTONES LADO A LADO ========== */

.cast-button-container {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -250px;  /* ← CAMBIÓ: Era -250px, ahora -290px para subirlo */
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: none;
    cursor: pointer;
    z-index: 1003;
}

.cast-button-container:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cast-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.cast-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
}


/* Botón Cerrar */
.close-button-container {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 10px;
    margin-top: -250px;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1003;
}

.close-button-container:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.close-button {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    background-color: #333;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.player-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cast-button-container {
        margin-left: -50px;
        margin-top: -175px;
    }

    .close-button-container {
        margin-left: 5px;
        margin-top: -175px;
    }
}



/* ============================================
   FIN DE TV PLAYER
   ============================================ */
   
    /* Estilos generales */
    .equalizer {
        position: absolute;
        margin: 0px;
        right: 25px;
        top: 119px;
    }

    /* Media Query para pantallas grandes */
    @media (min-width: 1024px) {
        .equalizer {
            display: none; /* Oculta el equalizer en pantallas de 1024px o más */
        }
    }



#album,
.chat-box,
.chat-box iframe {
    width: 100%;
    height: 100%
}

#chatModal {
    position: fixed;
    left: 0;
    bottom: -100%; /* Comienza fuera de la pantalla */
    width: 100%;
    height: 70%;
    background: #fff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s ease-in-out; /* Transición para mostrar y ocultar el modal */
    z-index: 1000;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}

/* Barra superior donde se encuentra el botón de cerrar */
#chatModal .chat-header {
    position: absolute;
    top: 0;
    left: 0;
	z-index: 1000;
    width: 100%;
    height: 50px; /* Altura de la barra */
    background: var(--bg-gradient);; /* Color de fondo de la barra */
    display: flex;
    justify-content: flex-end; /* Coloca el botón de cerrar en la esquina derecha */
    align-items: center; /* Centra el botón verticalmente */
    padding: 0 10px; /* Espacio alrededor del botón */
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Sombra para la barra */
}

/* Estilo para el botón de cerrar */
#closeChat {
    background: transparent;
    border: none;
    font-size: 30px; /* Tamaño del ícono del botón */
    cursor: pointer;
    color: #ffffff;
}

/* Línea de separación en la parte inferior de la barra */
#chatModal .chat-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ccc;
}

/* Contenedor de chat */
#chatModal .chat-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


 /* Contador de oyentes */
         * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a1a;
            min-height: 100vh;
        }

        /* Contador de oyentes en la parte superior - DESKTOP/PC */
        .listeners-container {
            position: fixed;
            z-index: 100;
            right: 0;
            top: 150px; 
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--primary);
            border-radius: 35px 0 0 35px;
            padding: 10px 18px 10px 20px;
            box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .listeners-container:hover {
            padding-left: 24px;
            padding-right: 22px;
            box-shadow: -8px 8px 35px rgba(0, 0, 0, 0.4);
            background: rgb(168, 168, 168);
        }

        .listeners-container svg {
            width: 28px;
            height: 28px;
            color: #fffefe;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .listeners-container:hover svg {
            transform: scale(1.15) rotate(5deg);
        }

        .listeners-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        #listenersDisplay {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .listeners-text {
            font-size: 11px;
            color: #fcfcfc;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
        }

        /* Animación de actualización */
        .updating {
            animation: countUpdate 0.4s ease;
        }

        @keyframes countUpdate {
            0% { 
                transform: scale(1.3); 
                color: #4338ca; 
            }
            50% {
                transform: scale(0.9);
            }
            100% { 
                transform: scale(1); 
                color: #667eea; 
            }
        }

        /* Pulso sutil continuo */
        @keyframes subtlePulse {
            0%, 100% { 
                box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.3);
            }
            50% { 
                box-shadow: -5px 5px 25px rgba(102, 126, 234, 0.3);
            }
        }

        .listeners-container {
            animation: subtlePulse 3s ease-in-out infinite;
        }

        /* Responsive para tablets */
        @media (max-width: 768px) {
            .listeners-container {
                top: 80px;
                padding: 5px 10px 5px 12px;
                gap: 6px;
            }

            .listeners-container svg {
                width: 18px;
                height: 18px;
            }

            #listenersDisplay {
                font-size: 14px;
            }

            .listeners-text {
                font-size: 8px;
            }
        }

        /* Responsive para móviles */
        @media (max-width: 480px) {
            .listeners-container {
                top: 80px;
                padding: 4px 8px 4px 10px;
                gap: 5px;
            }

            .listeners-container svg {
                width: 16px;
                height: 16px;
            }

            #listenersDisplay {
                font-size: 13px;
            }

            .listeners-text {
                font-size: 7px;
            }
        }

        /* Móviles muy pequeños - ocultar texto */
        @media (max-width: 360px) {
            .listeners-text {
                display: none;
            }
            
            .listeners-info {
                gap: 0;
            }
        }
        
        

/* ============================================
   MODAL VIDEOS YOUTUBE - ESTILO APP MÓVIL 
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal-videos {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    overflow: hidden;
}

.modal-videos.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENEDOR PRINCIPAL - CRUCIAL */
.modal-videos-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    overflow: hidden;
}

/* Header del modal - FIJO */
.modal-videos-header {
    background: var(--bg-gradient);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.btn-close-videos {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.btn-close-videos svg {
    width: 22px;
    height: 22px;
    stroke: white;
    stroke-width: 3;
}

.modal-videos-header h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex: 1;
}

/* REPRODUCTOR - FIJO */
.video-player-container {
    width: 100%;
    background: #000;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-player-container:hover .video-player-controls {
    opacity: 1;
}

.video-time {
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.btn-play-pause,
.btn-fullscreen {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

.btn-play-pause svg,
.btn-fullscreen svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Info del video - FIJO */
.current-video-info {
    background: #1a1a1a;
    padding: 10px 12px;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}

.current-video-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
}

.current-video-channel {
    color: #aaa;
    font-size: 12px;
}

/* Buscador - FIJO */
.videos-search {
    background: #1a1a1a;
    padding: 10px 12px;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}

.videos-search input {
    width: 100%;
    padding: 8px 12px;
    background: #2a2a2a;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.videos-search input::placeholder {
    color: #888;
}

.videos-search input:focus {
    background: #333;
    box-shadow: 0 0 0 2px var(--primary);
}

/* LISTA DE VIDEOS - CON SCROLL */
.videos-lista {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #0a0a0a;
    width: 100%;
    min-height: 0;
}

/* Video Item */
.video-item {
    display: flex;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #1a1a1a;
    flex-shrink: 0;
    overflow: hidden;
}

.video-item:active {
    background: #1a1a1a;
}

.video-item.playing {
    background: var(--primary);
}

.video-item-thumbnail {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 67px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 10px;
}

.video-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.video-item.playing .video-item-play {
    background: var(--primary);
}

.video-item:active .video-item-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item-play svg {
    width: 18px;
    height: 18px;
    fill: white;
    margin-left: 2px;
}

.video-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

.video-item-title {
    color: white;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-item.playing .video-item-title {
    color: #ffffff;
}

.video-item-desc {
    color: #888;
    font-size: 11px;
    line-height: 1.2;
    padding-left: 8px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-left: 3px solid var(--primary);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 4px 4px 0;
    margin-top: 2px;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Estados especiales */
.loading-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    color: white;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #333;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-videos p {
    color: #888;
    font-size: 15px;
}

.no-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    text-align: center;
    color: white;
}

.no-videos svg {
    width: 70px;
    height: 70px;
    stroke: #333;
    margin-bottom: 15px;
}

.no-videos h3 {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
}

.no-videos p {
    color: #888;
    font-size: 13px;
}

/* Scrollbar personalizado */
.videos-lista::-webkit-scrollbar {
    width: 6px;
}

.videos-lista::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.videos-lista::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.videos-lista::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ===== RESPONSIVE ===== */

@media (min-width: 600px) {
    .modal-videos-header {
        padding: 10px 15px;
    }

    .modal-videos-header h3 {
        font-size: 1.05rem;
    }

    .video-item-thumbnail {
        width: 140px;
        min-width: 140px;
        height: 79px;
    }

    .video-item-title {
        font-size: 14px;
    }

    .video-item-desc {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .modal-videos {
        padding: 0;
    }

    .modal-videos-content {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    .video-player-container {
        padding-bottom: 42%;
    }

    .current-video-info {
        padding: 12px 15px;
    }

    .current-video-title {
        font-size: 15px;
    }

    .videos-search {
        padding: 12px 15px;
    }

    .video-item {
        padding: 12px 15px;
    }

    .video-item-thumbnail {
        width: 160px;
        min-width: 160px;
        height: 90px;
    }
}

@media (min-width: 1024px) {
    .modal-videos-content {
        max-width: 900px;
    }

    .video-player-container {
        padding-bottom: 40%;
    }

    .video-item-thumbnail {
        width: 180px;
        min-width: 180px;
        height: 101px;
    }

    .video-item-title {
        font-size: 15px;
    }
}

@media (min-width: 1440px) {
    .modal-videos-content {
        max-width: 1100px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .video-player-container {
        padding-bottom: 65%;
    }

    .current-video-info {
        padding: 8px 12px;
    }

    .video-item {
        padding: 6px 12px;
    }

    .video-item-thumbnail {
        width: 90px;
        min-width: 90px;
        height: 50px;
    }
}
 
 
 


 /* ============================================
   MODAL PROGRAMACIÓN - CSS FINAL LIMPIO
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-programacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-programacion.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-programacion-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
}

.modal-programacion.active .modal-programacion-content {
    transform: translateY(0);
}

/* ======== ENCABEZADO ======== */
.modal-programacion-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 14px 0;
    border-bottom: 3px solid var(--primary);
    z-index: 1010;
}

.btn-close-programacion {
    position: absolute;
    left: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-programacion:hover {
    color: #7a2fff;
}

.btn-close-programacion svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.modal-programacion-header::after {
    content: 'PROGRAMACIÓN';
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-header {
    display: none;
}

/* ======== DÍAS ======== */
.dias-semana {
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 8px 10px;
    overflow-x: auto;
    border-bottom: 1px solid #ddd;
    scroll-behavior: smooth;
    white-space: nowrap;
    gap: 2px;
}

.dias-semana::-webkit-scrollbar {
    height: 4px;
}

.dias-semana::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.dias-semana::-webkit-scrollbar-track {
    background: transparent;
}

.dia-item {
    flex: 1 0 auto;
    text-align: center;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    border-radius: 8px;
    display: inline-block;
    border: none;
    line-height: 1;
}

.dia-item:hover {
    background: rgba(122, 47, 255, 0.1);
}

.dia-item.active {
    background: #e0e0e0;
    color: var(--primary);
}

.dia-numero {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.dia-nombre {
    display: block;
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

/* ======== LISTA DE PROGRAMAS ======== */
.programacion-lista {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
    background: #f5f5f5;
}

.programacion-lista::-webkit-scrollbar {
    width: 6px;
}

.programacion-lista::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.programacion-lista::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* ======== CARD PROGRAMA ======== */
.programa-card {
    display: flex;
    gap: 12px;
    padding: 14px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    overflow: visible;
    background: #ffffff;
    border-radius: 16px;
    margin: 10px 12px;
    align-items: center;
    position: relative;
}

.programa-card:nth-child(even) {
    background: #fafafa;
}

.programa-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ======== HORA ======== */
.programa-hora-container {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: 50px;
}

.programa-hora-icon {
    display: none;
}

.programa-hora-icon svg {
    display: none;
}

.programa-hora {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

/* ======== IMAGEN ======== */
.programa-imagen-container {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: #eaeaea;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border: none;
    margin: 0 -5px;
}

.programa-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px;
}

/* ======== BADGE EN DIRECTO ======== */
.badge-directo {
    position: absolute;
    top: 8px;
    left: 170px;
    background: #ff0000;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 12px;
    padding: 4px 10px;
    animation: parpadeo 1.3s infinite;
    box-shadow: 0 2px 6px rgba(255, 0, 0, 0.5);
    white-space: nowrap;
    border: none;
    z-index: 10;
    text-transform: uppercase;
}


@keyframes parpadeo {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* ======== INFO ======== */
.programa-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    padding-right: 8px;
}

.programa-titulo-container {
    overflow: hidden;
    width: 100%;
}

.programa-titulo {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.programa-descripcion {
    color: #999;
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.programa-descripcion .marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 12s linear infinite;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* ======== MARQUEE PARA TÍTULOS ======== */
.titulo-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: none;
}

.titulo-wrapper.marquee {
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

/* ======== LOADING ======== */
.loading-programacion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(122, 47, 255, 0.2);
    border-top-color: #7a2fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-programacion p {
    font-size: 14px;
    color: #666;
}

/* ======== NO PROGRAMACIÓN ======== */
.no-programacion {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-programacion svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
    margin-bottom: 15px;
    stroke: #999;
}

.no-programacion p {
    font-size: 14px;
    margin: 8px 0;
}

.no-programacion button {
    margin-top: 20px;
    background: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.no-programacion button:hover {
    background: #cc0000;
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.25);
}
/* Estilos del menú móvil */
.menu-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    gap: 4px;
    padding: 10px 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 11px;
    outline: none !important; /* AGREGADO */
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Remover estados de enlace */
.menu-item:active {
    background: transparent !important;
    outline: none !important;
}

.menu-item:focus {
    background: transparent !important;
    outline: none !important;
}

.menu-item:focus-visible {
    background: transparent !important;
    outline: none !important;
}

/* Solo active cuando abrimos modal */
.menu-item.active {
    background: rgba(255, 255, 255, 0.25) !important;
}
  /* ============================================
   FIN MODAL PROGRAMACIÓN 
   ============================================ */
 
 
 
 
 /* ============================================
   === NOTICIAS - 2 COLUMNAS MÁXIMA FUERZA ===
   ============================================ */

/* DESTRUIR CUALQUIER HERENCIA */
#noticiasGrid,
#noticiasGrid * {
    all: revert;
}

#noticiasGrid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: minmax(auto, max-content) !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

#noticiasGrid > div {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
}

#noticiasGrid .noticia-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
}

.noticias-scroll-container {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 15px !important;
    width: 100% !important;
}

/* ========== MODAL NOTICIAS ========== */
.modal-noticias {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10002 !important;
    overflow-y: auto !important;
}

.modal-noticias.active {
    display: flex !important;
    flex-direction: column;
}

.modal-noticias-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.modal-noticias-header {
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.btn-close-noticias {
    position: absolute;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-close-noticias:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.btn-close-noticias svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.modal-noticias-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.filtros-container {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
}

.filtros {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0 !important;
    overflow-x: auto;
    padding-bottom: 8px;
}

.filtro-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    color: #fff;
    padding: 4px 10px;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.filtro-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.filtro-btn.active {
    background: var(--primary);
    border-color: #fff;
}

/* ========== TARJETAS NOTICIAS ========== */
.noticia-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.noticia-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12) !important;
}

.noticia-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    background: var(--primary) !important;
    color: #fff !important;
    padding: 3px 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    z-index: 2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.noticia-imagen {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 0, 0, 0.1) 100%) !important;
}

.noticia-contenido {
    padding: 12px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.noticia-fuente {
    font-size: 10px !important;
    color: #9ca3af !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
}

.noticia-titulo {
    font-size: 0.95rem !important;
    color: #1f2937 !important;
    margin-bottom: 6px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.noticia-descripcion {
    color: #6b7280 !important;
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    flex-grow: 1 !important;
}

.noticia-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 8px !important;
    border-top: 1px solid #e5e7eb !important;
    margin-top: auto !important;
}

.noticia-fecha {
    font-size: 10px !important;
    color: #d1d5db !important;
    font-weight: 500 !important;
}

.noticia-leer {
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

.noticia-leer:hover {
    opacity: 0.8 !important;
    transform: translateX(2px) !important;
}

/* ========== MODAL DETALLE ========== */
.modal-noticia-detalle {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 10003 !important;
    overflow-y: auto;
}

.modal-noticia-detalle.active {
    display: block;
}

.modal-noticia-detalle-content {
    position: relative;
    background: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    color: #ffffff;
}

.detalle-header-bg {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.detalle-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalle-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(26, 26, 26, 1) 100%);
}

.detalle-controls {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.btn-control {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-control:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.btn-control svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.detalle-header-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding: 0 25px;
    z-index: 5;
}

.detalle-titulo-overlay {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.detalle-scroll-content {
    background: #1a1a1a;
    padding: 25px;
    color: #ffffff;
}

.detalle-meta-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detalle-fecha-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.detalle-fuente-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fuente-nombre {
    color: var(--primary);
    font-weight: 700;
}

.categoria-nombre {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.separador {
    color: rgba(255, 255, 255, 0.3);
}

.detalle-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.detalle-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.detalle-texto-contenido {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.detalle-texto-contenido p {
    margin-bottom: 18px;
}

.detalle-texto-contenido img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 25px 0;
    display: block;
}

.detalle-texto-contenido h1,
.detalle-texto-contenido h2,
.detalle-texto-contenido h3 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.detalle-texto-contenido strong,
.detalle-texto-contenido b {
    color: #ffffff;
    font-weight: 700;
}

.detalle-texto-contenido a {
    color: var(--primary);
    text-decoration: underline;
}

.detalle-url-container {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-leer-completo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-leer-completo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    #noticiasGrid {
        grid-template-columns: 1fr !important;
    }

    .modal-noticias-content {
        max-width: 100%;
    }

    .detalle-header-bg {
        height: 350px;
    }

    .detalle-titulo-overlay {
        font-size: 1.5rem;
    }

    .detalle-scroll-content {
        padding: 20px;
    }

    .detalle-texto-contenido {
        font-size: 1rem;
    }
}

/* ========== MODAL DETALLE - MÁXIMA ESPECIFICIDAD ========== */

html body .modal-noticia-detalle {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 10003 !important;
    overflow: hidden !important;
}

html body .modal-noticia-detalle.active {
    display: block !important;
    overflow: hidden !important;
}

html body .modal-noticia-detalle-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #1a1a1a !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

html body .detalle-header-bg {
    position: relative !important;
    width: 100% !important;
    height: 450px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

html body .detalle-header-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

html body .detalle-header-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(26, 26, 26, 1) 100%) !important;
}

html body .detalle-controls {
    position: absolute !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    z-index: 10 !important;
}

html body .btn-control {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

html body .btn-control:hover {
    background: #ffffff !important;
    transform: scale(1.05) !important;
}

html body .btn-control svg {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
}

html body .detalle-header-info {
    position: absolute !important;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 25px !important;
    z-index: 5 !important;
}

html body .detalle-titulo-overlay {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

/* SCROLLEABLE CONTENT - LA CLAVE */
html body .detalle-scroll-content {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #1a1a1a !important;
    padding: 25px !important;
    color: #ffffff !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
}

html body .detalle-meta-info {
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html body .detalle-fecha-info {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 10px !important;
}

html body .detalle-fuente-info {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

html body .fuente-nombre {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

html body .categoria-nombre {
    color: var(--primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

html body .separador {
    color: rgba(255, 255, 255, 0.3) !important;
}

html body .detalle-video-embed {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    background: #000 !important;
    margin-bottom: 25px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

html body .detalle-video-embed iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

html body .detalle-texto-contenido {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 30px !important;
}

html body .detalle-texto-contenido p {
    margin-bottom: 18px !important;
}

html body .detalle-texto-contenido img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 25px 0 !important;
    display: block !important;
}

html body .detalle-texto-contenido h1,
html body .detalle-texto-contenido h2,
html body .detalle-texto-contenido h3 {
    color: #ffffff !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

html body .detalle-texto-contenido strong,
html body .detalle-texto-contenido b {
    color: #ffffff !important;
    font-weight: 700 !important;
}

html body .detalle-texto-contenido a {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

html body .detalle-url-container {
    margin-top: 35px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html body .btn-leer-completo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: var(--primary) !important;
    color: white !important;
    padding: 14px 28px !important;
    border: none !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}

html body .btn-leer-completo:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    html body .detalle-header-bg {
        height: 350px !important;
    }

    html body .detalle-titulo-overlay {
        font-size: 1.5rem !important;
    }

    html body .detalle-scroll-content {
        padding: 20px !important;
    }

    html body .detalle-texto-contenido {
        font-size: 1rem !important;
    }

    html body .detalle-header-info {
        bottom: 20px !important;
        padding: 0 15px !important;
    }
}

/* ========== FUERZA MÁXIMA - SCROLL CONTENIDO NOTICIAS ========== */
.detalle-scroll-content {
    flex: 1 !important;
    overflow-y: auto !important;
    height: auto !important;
    max-height: none !important;
    background: #1a1a1a !important;
    padding: 25px !important;
    color: #ffffff !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .detalle-scroll-content {
        flex: 1 !important;
        overflow-y: auto !important;
        height: auto !important;
        max-height: none !important;
        padding: 20px !important;
    }
}
 /* ============================================
   FIN MDAL NOTICIAS
   ============================================ */
 

/* ============================================
   SLIDER / PUBLICIDAD - MENÚ Y MODAL
   ============================================ */

/* MODAL SLIDER */
#modalSlider {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

#modalSlider.open {
    display: flex !important;
    animation: slideInFromRight 0.6s ease-out forwards;
}

#modalSlider.close {
    animation: slideOutToRight 0.6s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.modal-slider-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.modal-slider-header {
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-slider-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.btn-close-slider {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-slider svg {
    width: 24px;
    height: 24px;
}

.slider-container-modal {
    position: relative;
    width: 100%;
    flex: 1;
    background: #000;
}

.slider-wrapper-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-slide-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide-modal.active {
    opacity: 1;
}

.slider-slide-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.slider-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.slider-btn-modal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-btn-modal svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.slider-indicators-modal {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicator.active {
    background: white;
    width: 12px;
    border-radius: 50%;
}

.slider-slide-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide-modal.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.slider-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px;
    font-size: 1.1rem;
    text-align: center;
}

.slider-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicator.active {
    background: white;
    width: 6px;
    border-radius: 6px;
}

.btn-salida-flotante {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    color: white;
}

.btn-salida-flotante:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-salida-flotante:active {
    transform: scale(0.95);
}

.btn-salida-flotante svg {
    width: 24px;
    height: 24px;
}

/* Animación de entrada */
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.btn-salida-flotante {
    animation: slideInRight 0.5s ease-out;
}
 
 
 /* ============================================
   FIN MODAL SLIDER
   ============================================ */
 
/* ========== LOGO DEL MENÚ - RESPONSIVE ========== */

.menu-logo-container {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Desktop - Pantallas grandes (1025px+) */
@media (min-width: 1025px) {
    .menu-logo-container {
        width: 100px;
        height: 100px;
    }
}

/* Tablets - Pantallas medianas (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .menu-logo-container {
        width: 100px;
        height: 100px;
    }
}

/* Móvil grande (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .menu-logo-container {
        width: 70px;
        height: 70px;
    }
}

/* Móvil pequeño (max-width: 480px) */
@media (max-width: 480px) {
    .menu-logo-container {
        width: 100px;
        height: 100px;
    }
}




/* ========== MODAL HISTORIAL ========== */
  .modal-overlay-historial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-overlay-historial.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-slide-content-historial {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
    transform: translateY(0);
  }

  .modal-overlay-historial.active .modal-slide-content-historial {
    animation: slideUp 0.4s ease;
  }

  .modal-overlay-historial:not(.active) .modal-slide-content-historial {
    animation: slideDown 0.4s ease;
  }

  .modal-slide-header-historial {
    padding: 20px;
    background: var(--primary);
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
  }

  .modal-slide-title-historial {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
  }

  .btn-close-modal-historial {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
  }

  .btn-close-modal-historial:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .modal-slide-body-historial {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
  }

  .contenedor-historial-lista {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  /* TARJETAS HORIZONTALES */
  .cancion-item-hist {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    border: none;
    padding: 0;
    align-items: stretch;
    min-height: 80px;
  }

  .cancion-item-hist:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  }

  .cancion-art-hist {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #000;
    flex: 0 0 80px;
    min-width: 80px;
  }

  .cancion-info-hist {
    padding: 10px 14px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .cancion-title-hist {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.2;
    margin: 0 0 4px 0;
  }

  .cancion-artist-hist {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
  }

  /* Modal Detalle */
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1070;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .modal-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-float {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 380px;
    max-height: 70vh;
    padding: 0;
    position: relative;
    animation: slideInScale 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  @keyframes slideInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .btn-close-float {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .btn-close-float:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .detalle-cancion-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .detalle-art-small {
    width: 100%;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }

  .detalle-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .detalle-info-small {
    width: 100%;
    padding: 20px 18px;
    text-align: center;
  }

  .detalle-titulo-small {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    word-wrap: break-word;
    line-height: 1.3;
  }

  .detalle-artista-small {
    font-size: 14px;
    color: var(--primary);
    margin: 0 0 18px 0;
    font-weight: 600;
  }

  .detalle-meta-info {
    border-top: 1px solid #eee;
    padding-top: 14px;
    padding-bottom: 0;
  }

  .detalle-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .detalle-meta-item:last-child {
    border-bottom: none;
  }

  .detalle-meta-label {
    font-weight: 600;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .detalle-meta-value {
    color: #333;
    font-weight: 500;
    font-size: 13px;
    text-align: right;
    flex: 1;
    margin-left: 12px;
    word-break: break-word;
  }

  /* Responsive */
  @media (max-width: 480px) {
    .mobile-menu {
      padding: 8px 0;
    }

    .menu-item {
      padding: 8px 10px;
      font-size: 10px;
      gap: 3px;
    }

    .menu-item i {
      font-size: 16px;
    }

    .mas-modal-header {
      padding: 15px;
    }

    .mas-modal-title {
      font-size: 1.1rem;
    }

    .opcion-item {
      padding: 15px 15px;
      font-size: 16px;
    }

    .opcion-item:hover {
      padding-left: 20px;
    }

    .modal-slide-header-historial {
      padding: 15px;
    }

    .modal-slide-title-historial {
      font-size: 1.1rem;
    }

    .modal-slide-body-historial {
      padding: 12px;
    }

    .contenedor-historial-lista {
      gap: 10px;
    }

    .cancion-item-hist {
      border-radius: 8px;
      min-height: 80px;
    }

    .cancion-art-hist {
      width: 80px;
      height: 80px;
    }

    .cancion-info-hist {
      padding: 10px 14px;
    }

    .cancion-title-hist {
      font-size: 13px;
      margin-bottom: 4px;
    }

    .cancion-artist-hist {
      font-size: 11px;
    }
  }
/* ========== MODAL DETALLE CANCIÓN - COMPACTO ========== */

.modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.7) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modal-backdrop.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-float {
  position: relative !important;
  width: 90vw !important;
  max-width: 85vw !important;
  height: auto !important;
  max-height: 75vh !important;
  background: #1a1a1a !important;
  border-radius: 10px !important;
  padding: 12px !important;
  overflow-y: auto !important;
  color: white !important;
}

.btn-close-float {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  z-index: 10000 !important;
  background: #e40606 !important;
  border: none !important;
  color: white !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 16px !important;
}

.detalle-art-small {
  width: 100% !important;
  height: 200px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  margin-bottom: 10px !important;
}

.detalle-info-small {
  width: 100% !important;
  padding: 8px !important;
  text-align: center !important;
}

.detalle-titulo-small {
  font-size: 15px !important;
  font-weight: bold !important;
  color: white !important;
  margin: 5px 0 !important;
  line-height: 1.2 !important;
}

.detalle-artista-small {
  font-size: 12px !important;
  color: #e40606 !important;
  margin-bottom: 8px !important;
}

.detalle-meta-info {
  border-top: 1px solid #333 !important;
  padding-top: 8px !important;
}

.detalle-meta-item {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 6px 0 !important;
  font-size: 11px !important;
  border-bottom: 1px solid #2a2a2a !important;
}

.detalle-meta-label {
  color: #999 !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
}

.detalle-meta-value {
  color: white !important;
  text-align: right !important;
  word-break: break-word !important;
}

@media (max-width: 480px) {
  .modal-float {
    width: 92vw !important;
    max-height: 80vh !important;
    padding: 10px !important;
  }

  .detalle-art-small {
    height: 160px !important;
    margin-bottom: 8px !important;
  }

  .detalle-titulo-small {
    font-size: 13px !important;
  }

  .detalle-artista-small {
    font-size: 11px !important;
  }

  .detalle-meta-item {
    font-size: 10px !important;
    padding: 4px 0 !important;
  }
}








/* ============================================
   INICIO MODAL PODCAST
   ============================================ */

/* ===== ANIMACIONES DE ENTRADA/SALIDA ===== */
@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownToBottom {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* ===== PODCASTS CSS ===== */
.modal-podcasts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    z-index: 2000;
    overflow-y: auto;
    padding: 10px;
    touch-action: none;
    transition: transform 0.1s ease-out;
}

.modal-podcasts.active {
    display: flex;
    flex-direction: column;
    animation: slideUpFromBottom 0.6s ease-out forwards;
}

.modal-podcasts.closing {
    animation: slideDownToBottom 0.6s ease-out forwards;
}

.modal-podcasts.dragging {
    transition: none;
}

.modal-podcasts-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: sticky;
    top: 0;
    background: var(--primary);
    padding: 12px 15px;
    border-radius: 0;
    z-index: 10;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
}

.modal-podcasts-header::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.modal-podcasts-header h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.btn-close-podcasts {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-podcasts:hover {
    background: rgba(255, 255, 255, 0.2);
}

.podcasts-lista {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    flex: 1;
    overflow-y: auto;
}

.podcast-card-item {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 90px 1fr 60px !important;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-card-item:last-child {
    border-bottom: none;
}

.podcast-card-item:hover {
    transform: translateX(3px);
}

.podcast-card-image {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--bg-gradient), #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.podcast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.podcast-card-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    width: 100%;
}

.podcast-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    order: 1;
}

.podcast-card-autor {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.podcast-card-categoria {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.podcast-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    order: 2;
}

.podcast-card-descripcion {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.2;
    display: block;
    width: 100%;
    overflow: hidden;
    order: 3;
}

.podcast-card-descripcion-marquee {
    display: inline-block;
    animation: marquee-podcast 8s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

@keyframes marquee-podcast {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.podcast-card-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
}

.btn-podcast-play {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background: var(--bg-gradient) !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px var(--primary) !important;
    font-size: 1.8rem !important;
}

.btn-podcast-play svg {
    width: 28px !important;
    height: 28px !important;
    fill: white !important;
}

.btn-podcast-play:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
}

.btn-podcast-play.playing svg {
    fill: white !important;
}

.loading-podcasts {
    text-align: center;
    padding: 30px 15px;
    color: #94a3b8;
}

.podcast-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top-color: var(--bg-gradient);
    border-radius: 50%;
    animation: spin-podcast 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin-podcast {
    to {
        transform: rotate(360deg);
    }
}

/* ===== REPRODUCTOR FLOTANTE PODCASTS (REDUCIDO) ===== */
#podcast-player-flotante {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    z-index: 3000;
    display: none;
    width: 85%;
    max-width: 340px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: visible;
}

#podcast-player-flotante.active {
    display: block;
}

.podcast-flotante-close-btn {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.podcast-flotante-close-btn:hover {
    background: #f0f0f0;
}

.podcast-flotante-content {
    padding: 0;
}

.podcast-flotante-portada-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.podcast-flotante-portada {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-flotante-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 6px 11px;
    border-radius: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.podcast-flotante-info-container {
    padding: 14px 16px;
    background: white;
}

.podcast-flotante-nombre {
    color: #1f2937;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
    line-height: 1.2;
}

.podcast-flotante-autor {
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* ===== BARRA DE PROGRESO PODCASTS ===== */
.podcast-flotante-progreso {
    padding: 10px 16px;
    background: #f9fafb;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    margin: 0 !important;
}

#podcast-barra-contenedor {
    position: relative !important;
    width: 100% !important;
    height: 6px !important;
    background: #e2e8f0 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    display: block !important;
    margin-bottom: 6px !important;
}

.podcast-flotante-slider {
    width: 100% !important;
    height: 4px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}

.podcast-flotante-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 12px !important;
    height: 12px !important;
    background: var(--primary) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px rgba(102, 126, 234, 0.4) !important;
}

.podcast-flotante-slider::-moz-range-thumb {
    width: 12px !important;
    height: 12px !important;
    background: #667eea !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(102, 126, 234, 0.4) !important;
}

.podcast-flotante-slider::-moz-range-track {
    background: transparent !important;
    border: none !important;
}

.podcast-flotante-tiempo {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 11px !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
    width: 100% !important;
    gap: 8px !important;
}

.podcast-flotante-tiempo span {
    display: inline-block !important;
    visibility: visible !important;
    color: var(--primary) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

#podcast-flotante-tiempo-actual {
    text-align: left !important;
}

#podcast-flotante-tiempo-total {
    text-align: right !important;
}

/* ===== BOTÓN PLAY/PAUSA FLOTANTE ===== */
.podcast-flotante-play-container {
    padding: 12px 16px;
    background: white;
    display: flex;
    justify-content: center;
    border-radius: 0 0 20px 20px;
}

.podcast-flotante-play-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: var(--bg-gradient) !important;
    border: none !important;
    color: var(--primary) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.podcast-flotante-play-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.4) !important;
}

.podcast-flotante-play-btn:active {
    transform: scale(0.94) !important;
}

.podcast-flotante-play-btn svg {
    width: 22px !important;
    height: 22px !important;
    fill: var(--primary) !important;
}

/* ===== REDES SOCIALES CON BORDE BLANCO ===== */
.podcast-flotante-redes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
}

.podcast-red {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border: 3px solid white;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.podcast-red:hover {
    transform: scale(1.08);
}

.podcast-red.facebook {
    background: #1877f2;
}

.podcast-red.whatsapp {
    background: #25d366;
}

.podcast-red.instagram {
    background: #e1306c;
}

.podcast-red.web {
    background: #0ea5e9;
}

.podcast-red.youtube {
    background: #ff0000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .podcast-card-item {
        grid-template-columns: 80px 1fr 50px;
        gap: 10px;
        padding: 10px 0;
    }

    .podcast-card-image {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .podcast-card-title {
        font-size: 0.9rem;
    }

    .podcast-card-autor {
        font-size: 0.65rem;
    }

    .podcast-card-categoria {
        font-size: 0.65rem;
    }

    .btn-podcast-play {
        width: 50px !important;
        height: 50px !important;
    }

    .btn-podcast-play svg {
        width: 24px !important;
        height: 24px !important;
    }

    #podcast-player-flotante {
        max-width: 310px;
    }
}

/* ===== MENU ACTIVO ===== */
.menu-item {
    border: none !important;
    box-shadow: none !important;
}

.menu-item.active {
    background: rgba(0, 0, 0, 0.3) !important;
    box-shadow: inset 0 -3px 0 #ffffff !important;
    font-weight: bold !important;
}

.menu-item:not(.active) {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ============================================
   FIN MODAL PODCAST
   ============================================ */


