* {
   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    /* Fondo profesional tipo consola de mezcla - degradado más profundo y textura sutil */
     background: radial-gradient(circle at 30% 20%, #0a0f1a 0%, #05070c 100%);
    color: #e8e9f0;
    overflow-x: hidden;
    padding-bottom: 40px;
    position: relative;
}

/* Textura sutil de granulado tipo cabina profesional */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 25, 40, 0.6);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    border-radius: 10px;
}

/* ==================== NAVBAR FIJO ==================== */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

nav.menu {
    /* Fondo tipo panel de control profesional */
    background:#0c3f43;
    backdrop-filter: blur(20px);
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
}

.nav-wrappers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sidenav-trigger {
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo {
    display: none !important;
}

.weather-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.weather-nav i {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: relative;
    top: 20px;
}

/* Desktop: ocultar botones móviles */
@media (min-width: 993px) {
    .sidenav-trigger, #nav-mobile {
        display: none;
    }
    .nav-wrappers ul li {
        width: 128px;
        display: block;
    }
    .share_btn {
        display: none !important; 
    }
    .modal_wraper, .modal_container {
        display: none;
    }
}

/* Botón Share - visible SOLO en móvil */
.share_btn {
    display: none;
    cursor: pointer;
    color: white;
    width: 50px;
    height: 50px;
	padding-top:30px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share_btn i {
    font-size: 20px;
}

 .right {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }

        .right li {
            position: relative;
        }

        .right li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            padding: 0 18px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 30px;
            height: 40px;
        }

        .right li a:hover {
            color: #20B2AA;
            background: rgba(32, 178, 170, 0.1);
        }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background:#0c3f43;
            backdrop-filter: blur(20px);
            min-width: 130px;
            border-radius: 16px;
            padding: 8px 0;
            list-style: none;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .right li:hover .dropdown {
            display: block;
        }

        .dropdown li a {
            padding: 10px 20px;
            border-radius: 0;
        }
		
	.dropdown.active {
    display: block;
}

/* RESPONSIVE NAVBAR MÓVIL - MOSTRAR BOTÓN SHARE */
@media (max-width: 992px) {
    .right {
        display: none !important;
    }
    .sidenav-trigger {
        display: flex !important;
    }
    .share_btn {
        display: flex !important;
    }
    .weather-nav {
        display: none !important;
    }
}

/* ==================== SIDENAV MÓVIL ==================== */
.sidenav {
     background:#0c3f43;
    backdrop-filter: blur(20px);
    width: 280px;
    z-index: 1003 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidenav .nav_perfil {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(32, 178, 170, 0.2);
    flex-shrink: 0;
}

.sidenav .nav_logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
  }

.sidenav .nav_logo img {
   width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid #20B2AA;
    object-fit: cover;
    display: block;
}

.sidenav .navigation {
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidenav .navigation li {
    list-style: none;
    display: flex;
    justify-content: center;
}

.sidenav .navigation li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 20px;
    width: 90%;
    max-width: 240px;
    color: rgba(232, 233, 240, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 40px; 
}

.sidenav .navigation li a:hover {
    background: rgba(32, 178, 170, 0.15);
    color: #20B2AA;
    transform: translateX(5px);
}

.sidenav .enlaces {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
}

.sidenav .enlaces h2 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(232, 233, 240, 0.4);
    text-align: center;
}

.sidenav .enlaces a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(232, 233, 240, 0.7);
    text-decoration: none;
    margin-top: 10px;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 40px;
    transition: all 0.3s ease;  
}

.sidenav .enlaces a:hover {
    color: #20B2AA;
    background: rgba(32, 178, 170, 0.1);
    transform: translateX(5px);
}

.sidenav-overlay {
    z-index: 1002 !important;
}

.enlaces a.weather-nav {
    display: flex;
    align-items: center;
}


@media (max-width: 480px) {
   .sidenav .nav_logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
  }
}


/* ===== MODAL DE COMPARTIR ===== */
.modal_wraper {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1004;
    justify-content: center;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.modal_wraper.active {
    display: flex;
    background: rgba(0, 0, 0, 0.8);
}

.modal_container {
    background: #0c3f43;
    border-radius: 28px 28px 0 0;
    padding: 25px 20px 30px;
    width: 100%;
    max-width: 100%;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-top: 1px solid rgba(32, 178, 170, 0.3);
}

.modal_wraper.active .modal_container {
    transform: translateY(0);
}

.modal_container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(232, 233, 240, 0.08);
}

.modal_container .header strong {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.modal_container .close {
    background: rgba(232, 233, 240, 0.08);
    border: none;
    color: white;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal_container .close:hover {
    background: rgba(232, 233, 240, 0.2);
    transform: rotate(90deg);
}

.social_media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social_media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social_media .fb { background: #1877f2; }
.social_media .wa { background: #25d366; }
.social_media .ce { background: #ea4335; }
.social_media .tl { background: #0088cc; }
.social_media .tt { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social_media a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.copy_url_wraper {
    display: flex;
    gap: 12px;
    background: rgba(232, 233, 240, 0.05);
    border-radius: 60px;
    padding: 5px;
    border: 1px solid rgba(32, 178, 170, 0.2);
}

.copy_url_wraper input {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
}

.copy_url_wraper input::placeholder {
    color: rgba(255,255,255,0.3);
}

.copy_url_btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    border: none;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy_url_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.copy_url_btn:active {
    transform: scale(0.95);
}

/* ===== TOAST ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

 .elemento {
            display: none;
        }
        
        .elemento.visible {
            display: block;
        }
		
/* ==================== CONTENIDO PRINCIPAL ==================== */
.main-content {
    margin-top: 70px;
    padding: 0 5px;
    min-height: calc(100vh - 70px);
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero { 
    position: relative;
    width: 100%;
    min-height: 78vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    background-image: url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 18px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    line-height: 1.5;
    padding: 0 5px;
	color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE MAIN CONTENT */
@media (max-width: 992px) {
    .main-content {
        margin-top: 65px;
    }
    .hero {
        padding: 45px 5px;
        border-radius: 20px;
    }
    .hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 65px;
    }
    .hero {
        padding: 40px 5px;
        margin-bottom: 35px;
        border-radius: 18px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-top: 60px;
        width: 100%;
        padding: 0 5px;
    }
    .hero {
        padding: 35px 5px;
        margin-bottom: 30px;
        border-radius: 16px;
    }
    .hero h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }
    .hero p {
        font-size: 15px;
        padding: 0 5px;
    }
}

/* ============================================ */
/* BLOQUE 5: CAJA MATRIX - VIDEO Y TEXTO       */
/* ============================================ */

.matrix-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 60px;
    background: rgba(10, 14, 22, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 28px;
    padding: 30px 5px;
    width: 100%;
    align-items: center;
    border: 1px solid rgba(32, 178, 170, 0.15);
}

/* Contenedor del texto (lado izquierdo) */
.caja-matrix {
    flex: 1;
    width: 50%;
    height: auto;
    padding-top: 2px;
    padding-bottom: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.caja-matrix h3 {
    font-size: 25px;
    background: linear-gradient(135deg, #20B2AA 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
 }

.caja-matrix p {
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 14px;
    margin:0 auto;
	text-align:justify;
    padding: 0 5px;
    width:97%;
}

.caja-matrix a {
    font-size: 15px;
    margin: 6px 0;
    display: inline-block;
}

.caja-matrix .button {
    margin-top: 18px;
    text-align: center;
    display: block;
    width: 100%;
}

.caja-matrix .button img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0;
}

/* Contenedor del video (lado derecho - ASIDE) */
.contenedor_pt {
    flex: 1;
    width: 50%;
    min-width: 0;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

/* RESPONSIVE MATRIX - COLUMNA EN TABLETS Y MÓVILES */
@media (max-width: 992px) {
    .matrix-section {
        flex-direction: column;
        padding: 28px 5px;
        gap: 30px;
        border-radius: 24px;
    }
    .caja-matrix {
        width: 100%;
    }
    .contenedor_pt {
        width: 100%;
    }
    .caja-matrix h3 {
        font-size: 28px;
    }
    .caja-matrix p {
        font-size: 14px;
        padding: 0 5px;
		text-align:justify;
    }
}

@media (max-width: 768px) {
    .matrix-section {
        flex-direction: column;
        padding: 24px 5px;
        gap: 25px;
        margin-bottom: 50px;
        border-radius: 20px;
    }
    .caja-matrix {
        width: 100%;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .contenedor_pt {
        width: 100%;
    }
    .caja-matrix h3 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .caja-matrix p {
        font-size: 14px;
        line-height: 1.65;
		text-align:justify;
        margin-bottom: 16px;
        padding: 0 5px;
    }
    .caja-matrix .button img {
        width: 100%;
        max-width: 100%;
    }
    .video-responsive {
        border-radius: 16px;
    }
    .video-responsive iframe {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .matrix-section {
        flex-direction: column !important;
        padding: 20px 5px !important;
        gap: 25px;
        margin-bottom: 40px;
        border-radius: 16px !important;
    }
    .caja-matrix {
        width: 100% !important;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .contenedor_pt {
        width: 100% !important;
    }
    .caja-matrix h3 {
        font-size: 26px !important;
        margin-bottom: 18px !important;
    }
    .caja-matrix p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
        text-align:justify;
        padding: 0 5px !important;
    }
    .caja-matrix a {
        font-size: 14px !important;
    }
    .caja-matrix .button {
        width: 100%;
        display: block;
    }
    .caja-matrix .button img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    .video-responsive {
        border-radius: 0 !important;
    }
    .video-responsive iframe {
        border-radius: 0 !important;
    }
}

@media (max-width: 375px) {
    .matrix-section {
        flex-direction: column !important;
        padding: 18px 5px !important;
        gap: 22px;
    }
    .caja-matrix h3 {
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }
    .caja-matrix p {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
        padding: 0 5px !important;
		text-align:justify;
    }
    .caja-matrix .button img {
        width: 100% !important;
    }
}

@media (max-width: 320px) {
    .matrix-section {
        flex-direction: column !important;
        padding: 16px 5px !important;
        gap: 20px;
    }
    .caja-matrix {
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .caja-matrix h3 {
        font-size: 22px !important;
        margin-bottom: 14px !important;
    }
    .caja-matrix p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        padding: 0 5px !important;
		text-align:justify;
    }
    .caja-matrix a {
        font-size: 13px !important;
    }
    .caja-matrix .button img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* BLOQUE 6: SECCIÓN GENERAL Y CARDS */
.section {
    margin-bottom: 50px;
    padding: 0 5px;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 5px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.section-header a {
    color: #20B2AA;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
    width: 100%;
}

.program-card {
    background: rgba(10, 14, 22, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.program-card:hover {
    transform: translateY(-8px);
    background: rgba(15, 20, 30, 0.7);
    border-color: rgba(32, 178, 170, 0.4);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 140px;
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    width: 100%;
}

.card-content {
    padding: 18px;
    width: 100%;
}

.card-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 13px;
    color: rgba(232, 233, 240, 0.55);
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 45px;
        padding: 0 5px;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .cards-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section {
        margin-bottom: 40px;
        padding: 0 5px;
    }
    .section-header {
        margin-bottom: 25px;
        padding: 0 5px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .section-header a {
        font-size: 13px;
    }
    .cards-grid {
        grid-template-columns: 1fr !important;
    }
    .card-image {
        height: 140px;
        font-size: 50px;
    }
    .card-content {
        padding: 18px;
    }
    .card-content h3 {
        font-size: 17px;
    }
    .card-content p {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .section {
        margin-bottom: 35px;
        padding: 0 5px;
    }
    .section-header h2 {
        font-size: 22px;
    }
    .card-image {
        height: 120px;
        font-size: 45px;
    }
    .card-content {
        padding: 14px;
    }
    .card-content h3 {
        font-size: 16px;
    }
    .card-content p {
        font-size: 12px;
    }
}

/* BLOQUE 7: VIDEOS (ARTISTAS) */
.artistas {
  width: 100%;
  margin: 0 auto;
  padding: 15px 20px;

}

.artistas-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.artistas-container:last-child {
  margin-bottom: 0;
}

/* Tarjeta de artista */
.artistas-item {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artistas-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.embed-res {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.embed-res iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.artistas-item:hover .embed-res iframe {
  transform: scale(1.02);
}

.artistas-text {
  padding: 20px;
  flex-grow: 1;
  text-align: center;
  background: #ffffff;
}

.artistas-text h3 {
  font-size:18px;
  font-weight: 700;
   color: #20B2AA;
  margin: 0 0 5px 0;
}

.artistas-text h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0c3f43, #1a5c61);
  margin: 10px auto 0;
  border-radius: 2px;
}

.artistas-text h2 {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  color: #e74c3c;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(231, 76, 60, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.artistas-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
    .artistas-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .artistas {
        padding: 20px 5px;
    }
    .artistas-text {
        padding: 18px;
    }
    .artistas-text h3 {
        font-size: 20px;
    }
    .artistas-text p {
        font-size: 14px;
    }
}

/* BLOQUE 8: ARTISTAS CON SLIDER */
.contenedors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 5px;
    width: 100%;
}

.cards {
    background: rgba(10, 14, 22, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cards:hover {
    transform: translateY(-8px);
    background: rgba(15, 20, 30, 0.7);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.card-headers {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
    width: 100%;
}

.sliders {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sliders .slides {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.sliders .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sliders .prev,
.sliders .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sliders .prev:hover,
.sliders .next:hover {
    background: #20B2AA;
}

.sliders .prev { left: 10px; }
.sliders .next { right: 10px; }

.card-bodys {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.card-titles {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #20B2AA;
}

.card-descriptions  {
   font-size: 14px;
    line-height: 1.6;
    color: rgba(232, 233, 240, 0.7);
    text-align: justify;
    margin: 0 auto 30px auto; 
    width:100%;
    flex: 1;
}
		
.vote-button {
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transition: all 0.3s ease;
    width: 40%;
    margin-top: auto;
}

.vote-button:hover {
    transform: scale(1.02);
}

.vote-count {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .contenedors {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contenedors {
        padding: 30 5px;
        gap: 25px;
    }
    .card-headers {
        height: 260px;
    }
    .card-bodys {
        padding: 18px;
    }
    .card-titles {
        font-size: 17px;
    }
    .card-descriptions p {
        font-size: 14px;
		text-align:justify;
		margin:0 auto;
    }
    .vote-button {
        width: 40%;
        padding: 11px 18px;
        font-size: 14px;
    }
}

/* BLOQUE 9: BLOGGERS */
#bloggers {
    margin-top: 20px;
    margin-bottom: 80px;
    padding: 0 5px;
    width: 100%;
}

#bloggers h3 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #20B2AA 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    width: 100%;
}

.contenido_block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.radiox {
    background: rgba(10, 14, 22, 0.6);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid rgba(32, 178, 170, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.radiox:hover {
    transform: translateY(-5px);
    background: rgba(15, 20, 30, 0.7);
    border-color: rgba(32, 178, 170, 0.3);
}

.slideshow {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.slideshow .mySlides1,
.slideshow .mySlides2,
.slideshow .mySlides3 {
    display: none;
    width: 100%;
    height: 100%;
}

.slideshow .mySlides1 img,
.slideshow .mySlides2 img,
.slideshow .mySlides3 img {
    width: 100%;
    height:100%;
    object-fit: cover;
}

.slideshow .prev,
.slideshow .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slideshow .prev:hover,
.slideshow .next:hover {
    background: #20B2AA;
}

.slideshow .prev { left: 10px; }
.slideshow .next { right: 10px; }

.radiox h4 {
     font-size: 20px;
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center
}

.radiox .description p {
    line-height: 1.6;
    margin: 0 auto 20px;
    width: 98%;
    font-size: 14px;
    color: #fff;
    text-align:justify;
	text-justify: inter-word;
	margin-bottom:15px;
	flex-grow: 1;
}

.btn1 {
    margin-top:15px;
    width: 40%;
    display: block;
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.btn1:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contenido_block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    #bloggers {
        padding: 0 5px;
        margin-bottom: 50px;
    }

    #bloggers h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .radiox {
        padding: 18px;
        border-radius: 20px;
    }

    .slideshow {
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 16px;
    }

    .slideshow .mySlides1,
    .slideshow .mySlides2,
    .slideshow .mySlides3 {
        display: none;
        width: 100%;
        height: 100%;
    }

    .slideshow .mySlides1 img,
    .slideshow .mySlides2 img,
    .slideshow .mySlides3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .radiox h4 {
        font-size: 20px;
    }

    .radiox .description p{
         width: 100%;
         font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        padding: 0 5px !important;
		text-align:justify;
    }
	


    .btn1 {
        width: 40%;
        padding: 11px 18px;
        font-size: 14px;
    }
}

/* BLOQUE 10: PODCAST */
.boxes-podcast {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 80px 0 60px 0;
    padding: 0 5px;
    width: 100%;
}

.caja-portfa {
    background: rgba(10, 14, 22, 0.6);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.caja-portfa h3 {
    background: linear-gradient(135deg, #20B2AA 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 23px;
    text-align: center;
    margin-bottom: 28px;
    display: inline-block;
}

.fb_back {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .boxes-podcast {
        grid-template-columns: 1fr;
    }
	.fb_back #sc-widget{
      height:330px;
  }
}

@media (max-width: 480px) {
    .boxes-podcast {
        padding: 0 5px;
        margin: 40px 0 30px 0;
        gap: 25px;
    }
    .caja-portfa {
        padding: 18px;
        border-radius: 20px;
    }
    .caja-portfa h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

/* BLOQUE 11: CONTAINERS VIDEO */
.containers {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 28px;
    overflow: hidden;
    margin: 60px 0;
}

.header-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-containex {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(5, 77, 74, 0.8) 0%, rgba(2, 47, 64, 0.8) 100%);
}

.header-containex h1 {
    font-size: 32px;
    margin-bottom: 15px;
    padding: 0 5px;
}

.header-containex p {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 0 5px;
}

.header-containex .btn{
    width:150px;
	height:50px;
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-containex .btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .containers {
        height: 320px;
        margin: 40px 0;
        border-radius: 24px;
    }
    .header-containex h1 {
        font-size: 28px;
    }
    .header-containex p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .containers {
        height: 280px;
        margin: 35px 0;
        border-radius: 0;
    }
    .header-containex h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .header-containex p {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    .header-containex .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* BLOQUE 12: FAN PAGE */
.boxes-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 0 5px;
    width: 100%;
}

.caja-portfolio {
    background: rgba(10, 14, 22, 0.6);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.caja-portfolio h3 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #20B2AA 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    width: 100%;
}

.fb_background {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    width: 100%;    
    display: flex;         
    justify-content: center; 
}

.fb_background iframe {
    width: 100%;
    height: 430px;
    display: block;
}

#sc-widget {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .boxes-portfolio {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .boxes-portfolio {
        padding: 0 5px;
        margin: 40px 0;
        gap: 25px;
    }
    .caja-portfolio {
        padding: 18px;
        border-radius: 20px;
    }
    .caja-portfolio h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .fb_background {
        min-height: 280px;
    }
}

/* BLOQUE 13: VIDEO SLIDER */
.video-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #000;
}

.video-slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

.video-slider .slides iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: rgba(32, 178, 170, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slide-arrow.left {
    left: 10px;
}

.slide-arrow.right {
    right: 10px;
}

.slide-arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.slide-arrow.left:before {
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    left: 45%;
}

.slide-arrow.right:before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    left: 55%;
}

@media (max-width: 768px) {
    .video-slider {
        min-height: 260px;
    }
    .slide-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .video-slider {
        min-height: 240px;
        border-radius: 0;
    }
    .slide-arrow {
        width: 34px;
        height: 34px;
    }
}

/* BLOQUE 14: NOTICIAS */
.notas_page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.containst {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.main-contain {
    flex: 2;
    min-width: 0;
    order: 1;
}

.advert-container {
    flex: 0 0 300px;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advert-container .container-fluid {
    background: rgba(10, 14, 22, 0.6);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.advert-container .imagen img {
    width: 100%;
    border-radius: 12px;
}

.advert-container .imagen p {
    margin-top: 10px;
    color: #20B2AA;
    font-weight: 500;
}

#Adds img {
    border-radius: 12px;
    width: 100%;
}

.contec {
    background: rgba(10, 14, 22, 0.4);
    border-radius: 20px;
    padding: 25px;
}

.news-box {
    background: rgba(10, 14, 22, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.08);
}

.news-box:hover {
    background: rgba(15, 20, 30, 0.6);
    transform: translateY(-3px);
    border-color: rgba(32, 178, 170, 0.2);
}

.news-boxs h2 {
    font-size:23px;
    margin-bottom: 10px;
    color: #20B2AA;
}

.news-box h3 {
    font-size:20px;
}

.news-box h5 {
    font-size:16px;
}
.news-boxs h3 {
    font-size:18px;
    margin-bottom: 10px;
    color: #20B2AA;
}

.news-boxs h5 {
    font-size: 10px;
    color: rgba(232, 233, 240, 0.4);
    margin-top: 8px;
}


.datetime {
    font-size: 12px;
    color: rgba(232, 233, 240, 0.5);
    margin-bottom: 15px;
}

.news-box p {
    font-size: 14px;
	text-align:justify;
    line-height: 1.5;
    color: rgba(232, 233, 240, 0.7);
	margin-bottom:10px;
}

.news-boxs p {
    line-height: 1.6;
    margin-top: 15px;
	padding-bottom:10px;
	text-align:justify;
}

 .container_pie {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            line-height: 1.6;
            border-top: 1px solid rgba(32, 178, 170, 0.1);
        }
        
        .container_pie p {
            color: rgba(232, 233, 240, 0.6);
            font-size: 13px;
            margin-bottom: 15px;
        }
       
.news-box img {
    width: 100%;
	height:300px;
    border-radius: 12px;
}

.news img {
    width: 100%;
	height:300px;
    border-radius: 12px;
}

.news-container img{
    width: 100%;
	height:300px;
    border-radius: 12px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.infoes {
    background: rgba(10, 14, 22, 0.5);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 178, 170, 0.08);
}

.infoes:hover {
    background: rgba(15, 20, 30, 0.6);
    transform: translateY(-3px);
    border-color: rgba(32, 178, 170, 0.2);
}

 .news-boxs img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.top-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.date {
    font-size: 12px;
    color: rgba(232, 233, 240, 0.5);
    margin-bottom: 12px;
    font-weight: normal;
}

.top-info p {
    font-size: 14px;
	text-align:justify;
    line-height: 1.5;
    color: rgba(232, 233, 240, 0.7);
}

.news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.boton_content {
    text-align: center;
    margin-top: 30px;
}

#boton {
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#boton:hover {
    transform: scale(1.05);
}

.back-button {
    background: linear-gradient(135deg, #20B2AA 0%, #FF6B35 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    color: white;
	 width: 20%;
    height: 40px;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: scale(1.05);
}

@media (max-width: 860px) {
    .notas_page {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 🔥 contenedor principal full pantalla */
    .containst {
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
        gap: 10px;
    }

    .main-contain {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* 🔥 eliminar efecto "card dentro de card" */
    .contec {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    /* 🔥 bloques tipo matrix */
    .news-box,
    .news-boxs,
    .infoes {
        width: 100%;
        padding: 10px;
        background: rgba(10, 14, 22, 0.5);
        border-radius: 0;
        box-sizing: border-box;
    }

   
.news-box img,
.news img,
.news-container img,
.news-boxs img,
.container-fluid img {
    width: calc(100% - 10px);  
    max-width: 100%;           
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin: 0 auto;      
}

    /* 🔥 grid limpio */
    .news-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* 🔥 botón */
    .back-button {
        width:150px;
        margin: 20px auto;
    }
}

/* BLOQUE 15: REPRODUCTOR STICKY */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background:#0c3f43;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(32, 178, 170, 0.3);
    z-index: 1001;
    padding: 10px 5px;
    width: 100%;
}

.player-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.player-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.player-cover{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.track-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-status {
    color: rgba(232, 233, 240, 0.5);
    font-size: 11px;
}

.play-btn {
    background-color:white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.time-info {
    display: flex;
    align-items: center;
	margin-right:5px;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 59, 48, 0.15);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 59, 48, 0.3);
    white-space: nowrap; 
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #FF3B30;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
}

@media (max-width: 480px) {
    .music-player {
        padding: 8px 5px;
    }
    .player-cover {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-radius: 0;
    }
    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* BLOQUE 17: TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #20B2AA;
    padding: 12px 24px;
    border-radius: 60px;
    z-index: 1005;
    animation: slideUp 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(32, 178, 170, 0.4);
    white-space: nowrap;
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@media (max-width: 480px) {
    .toast-notification {
        bottom: 110px;
        padding: 10px 20px;
        font-size: 13px;
        width: 90%;
        white-space: normal;
        text-align: center;
        border-radius: 30px;
    }
}

/* BLOQUE 18: AJUSTES FINALES MÓVIL */
@media (max-width: 480px) {
    .main-content,
    .hero,
    .matrix-section,
    .section,
    .artistas,
    .contenedors,
    #bloggers,
    .boxes-podcast,
    .boxes-portfolio,
    .containst,
    .contec,
    footer {
        border-radius: 0 !important;
    }
    
    img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .cards-grid,
    .artistas-container,
    .contenedors,
    .contenido_block,
    .boxes-podcast,
    .boxes-portfolio,
    .news-container {
        grid-template-columns: 1fr !important;
    }
    
    .video-responsive iframe,
    .embed-res iframe,
    .video-slider iframe {
        width: 100% !important;
        height: 100% !important;
    }
    
    .program-card,
    .artistas-item,
    .cards,
    .radiox,
    .caja-portfa,
    .caja-portfolio,
    .video-responsive,
    .fb_back,
    .fb_background,
    .video-slider,
    .slideshow {
        border-radius: 0 !important;
    }
}

/* =========================
   MODAL OVERLAY
========================= */
.live-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 9999;
}

/* ACTIVO */
.live-modal.active{
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   PANEL (DESKTOP / DEFAULT)
========================= */
.live-modal-box{
    position: fixed;
    bottom: 0;
    right: 0px;
    width: 360px;
    max-width: 95%;
	 background:#0c3f43;
    border-radius: 18px 18px 0 0;
    padding: 18px;
    transform: translateY(110%);
    transition: .35s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,.5);
    border: 1px solid rgba(32, 178, 170, 0.2);
    border-bottom: none;
}

/* ENTRADA */
.live-modal.active .live-modal-box{
    transform: translateY(0);
}

/* =========================
   TITULO
========================= */
.live-modal-box h4{
    text-align: center;
    margin-bottom: 16px;
    color: #20B2AA;
    letter-spacing: 2px;
    font-size: 16px;
}

/* =========================
   CERRAR
========================= */
.close{
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

/* =========================
   LISTA
========================= */
.radio-player{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   CARD
========================= */
.station{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(10, 14, 22, 0.6);
    border: 1px solid rgba(32, 178, 170, 0.15);
    border-radius: 14px;
    transition: .25s;
}

.station:hover{
    background: rgba(15, 20, 30, 0.8);
    transform: translateY(-2px);
    border-color: rgba(32, 178, 170, 0.3);
}

/* =========================
   INFO
========================= */
.station-info{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================
   SEÑAL
========================= */
.signal{
    width: 10px;
    height: 10px;
    background: #20B2AA;
    border-radius: 50%;
    box-shadow: 0 0 10px #20B2AA;
}

/* =========================
   BOTON
========================= */
.player-btns, .player-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #20B2AA;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .player-btns:hover, .player-btn:hover {
        background: #1a8f8a;
        transform: scale(1.05);
    }
    
    .player-btns.playing, .player-btn.playing {
        background: #e74c3c;
    }
    
    .player-btns.playing:hover, .player-btn.playing:hover {
        background: #c0392b;
    }

/* =========================================================
   📱 RESPONSIVE (MENOS DE 480px)
========================================================= */
@media (max-width: 480px){

    /* PANEL ocupa TODA la pantalla abajo */
    .live-modal-box{
        width: 100%;
        max-width: 100%;
        right: 0;
        left: 0;
        border-radius: 18px 18px 0 0;
        padding: 14px;
        bottom: 0;
    }

    /* Ajustar títulos */
    .live-modal-box h4{
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Cards más compactas */
    .station{
        padding: 10px;
    }

    /* Botón más cómodo en móvil */
    .player-btns{
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Cerrar más accesible */
    .close{
        font-size: 26px;
        top: 8px;
        right: 12px;
    }
}

/* Contenedor del modal */

.news-modals {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 5px;
    place-items: center;
    z-index: 9999;
    background: rgba(0,0,0,.55);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
 
.news-modals.active {
    display: flex;
}

/* Caja modal */

.news-modals-boxs {

    width: 400px;
    height: 330px;
    bottom: 0;
	left:0;
    background-color: azure;
    box-shadow: 0 1px 6px #0001, 0 2px 10px #0002;
    position: fixed;
    bottom: 0;

}

/* =========================
        HEADER
========================= */

.news-header {
    height:55px;
    background:#0c3f43;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.news-header h4 {
    margin:0;
    color:white;
    font-size:18px;
    font-weight:600;
}

/* X cerrar */
.cerrar {
    position:absolute;
    right:15px;
    top:8px;
    color:white;
    font-size:32px;
    font-weight:bold;
    cursor:pointer;
    line-height:35px;
}

.cerrar:hover {
    opacity:.7;
}

.News-player {
    flex:1;
    width:100%;
}

.News-player iframe {
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* =========================
       RESPONSIVE 560px
========================= */

@media(max-width:560px){
.news-modals {
    padding:0;
    align-items:flex-end;
}

.news-modals-boxs {
    width:100%;
    max-width:none;
    height:300px;
    border-radius:18px 18px 0 0;
}

.news-header {
    height:50px;
}

.news-header h4 {
    font-size:16px;
}

.cerrar {
    font-size:28px;
    right:12px;
    top:6px;
  }
}

footer {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(4, 6, 12, 0.9) 0%, rgba(2, 3, 8, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 25px 5px;
    width: 100%;
    border: 1px solid rgba(32, 178, 170, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    width: 100%;
}

.footer-columna h3 {
    color: #20B2AA;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-columna p,
.footer-columna a {
	width:90%;
    color: white;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
    display: block;
	text-align:justify;
	text-align:center;
	margin:0 auto;
}

.footer-columna a:hover {
    color: #20B2AA;
}

/* PAYPAL BUTTON - MÁS PEQUEÑO */
.paypal-button {
    padding-top: 10px;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.paypal-button form {
    transform: scale(0.85);
    transform-origin: center;
}

.footer-copy-redes {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(32, 178, 170, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    width: 100%; 
}

.footer-redes {
    display: flex;
    gap: 18px; margin-right:10px;
	
}

.footer-redes a {
    color: white;
    font-size: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-copy p {
    padding: 8px 12px;
}

.footer-redes a:hover {
    color: #20B2AA;
    transform: translateY(-2px);
}

/* RESPONSIVE FOOTER */
@media (max-width: 860px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-copy-redes {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
	.footer-redes a {
        font-size: 23px;
		margin-bottom:20px;
    }
    .footer-redes {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 5px;
        margin-top: 20px;
        border-radius: 0;
    }
    .footer-columna h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .footer-columna p,
    .footer-columna a {
        font-size: 13px;
        line-height: 1.9;
    }
    .footer-redes {
        gap: 20px;
    }
    .footer-redes a {
        font-size: 20px;
    }
	
  .paypal-button img {
    padding-top: 10px;
    width: 100px;
	height:40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

    .paypal-button form {
        transform: scale(0.75);
    }
}

@media (max-width: 320px) {
    footer {
        padding: 20px 5px;
        margin-top: 30px;
        border-radius: 0;
    }
    .footer-columna h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .footer-columna p,
    .footer-columna a {
        font-size: 13px;
        line-height: 1.9; 
		margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        text-align: justify;
        align-items: center;
    }
    .footer-redes {
        gap: 20px;
    }
    .footer-redes a {
        font-size: 23px;
		margin-bottom:20px;
    }
	
  .paypal-button img {
    padding-top: 10px;
    width: 100px;
	height:40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

    .paypal-button form {
        transform: scale(0.75);
    }
}
