*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#f5f5f5;
    color:#000;
    font-family:Inter,Arial,Helvetica,sans-serif;
    padding-bottom:88px;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* HEADER */

.topbar{
    height:78px;
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:0 40px;
    position:sticky;
    top:0;
    z-index:9999;
    border-bottom:2px solid #01e985;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
}

/* LOGO */

.brand{
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand img{
    width:184px;
    max-height:54px;
    transition:.3s ease;
    filter:drop-shadow(0 0 12px rgba(1,233,133,.35));
}

.brand img:hover{
    transform:scale(1.05);
}

/* MENU */

.mainnav{
    display:flex;
    gap:38px;
    align-items:center;
    justify-content:center;
}

.mainnav a{
    font-weight:800;
    opacity:.92;
    color:#fff;
    font-size:.95rem;
    letter-spacing:.5px;
    position:relative;
    transition:.3s ease;
}

.mainnav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#01e985;
    border-radius:20px;
    transition:.3s ease;
}

.mainnav a:hover{
    color:#01e985;
}

.mainnav a:hover::after{
    width:100%;
}

/* BOTONES */

.top-actions{
    display:flex;
    gap:12px;
    align-items:center;
}

.btn{
    border:0;
    border-radius:7px;
    padding:14px 20px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    cursor:pointer;
}

.btn.red{
    background:var(--primary);
    color:#ffffff;
}

.btn.green{
    background:var(--accent);
    color:#fff;
}

.btn.white{
    background:#fff;
    color:var(--primary);
}

.btn.large{
    font-size:1rem;
    padding:18px 34px;
}

/* MENU MOVIL */

.menu-btn{
    display:none;
    background:#01e985;
    color:#000;
    border:none;
    border-radius:10px;
    padding:12px 15px;
    font-weight:900;
    box-shadow:0 0 15px rgba(1,233,133,.45);
}

/* HERO SLIDER */

.hero-slider{
    width:100%;
    aspect-ratio:1920/500;
    overflow:hidden;
    position:relative;
    background:#000;
}

.hero-slide{
    display:none;
    width:100%;
    height:100%;
    min-height:100%;
    background-size:100% 100%;
    background-position:center center;
    background-repeat:no-repeat;
    align-items:center;
    position:absolute;
    inset:0;
}

.hero-slide::before{
    display:none;
}

.hero-slide.active{
    display:flex;
    position:relative;
}

.hero-copy{
    width:min(650px,92vw);
    padding-left:clamp(20px,6vw,90px);
    padding-right:20px;
    color:#fff;
    position:relative;
    z-index:2;
}

.hero-copy h1{
    font-size:clamp(2.5rem,6vw,5.5rem);
    line-height:.95;
    margin:0 0 20px;
    font-style:italic;
    letter-spacing:0;
}

.hero-copy p{
    font-size:clamp(1.1rem,2vw,1.7rem);
    line-height:1.4;
    margin:0 0 28px;
    font-weight:700;
}

/* TICKER */

.ticker{
    display:grid;
    grid-template-columns:102px 1fr;
    background:#01e985;
    color:#000000;
    min-height:42px;
    align-items:center;
}

.ticker strong{
    height:100%;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.9rem;
}

.ticker span{
    text-align:center;
    font-weight:700;
}

/* SECCIONES */

.section,
.page,
.live-page{
    width:min(1220px,calc(100% - 32px));
    margin:36px auto;
}

.section-title{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:16px;
}

.section h2,
.page h1,
.live-page h1{
    font-size:clamp(1.7rem,3vw,2.6rem);
    margin:0 0 20px;
    color:#101010;
}
/* NOTICIAS */

.news-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.news-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:transform .2s ease,box-shadow .2s ease;
}

.news-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 38px rgba(0,0,0,.14);
}

.news-card img{
    width:100%;
    height:190px;
    object-fit:cover;
}

.news-card span{
    display:inline-block;
    margin:14px 14px 0;
    color:var(--primary);
    font-weight:900;
    font-size:.78rem;
    text-transform:uppercase;
}

.news-card h2,
.news-card h3{
    font-size:1.05rem;
    line-height:1.25;
    margin:8px 14px 10px;
}

.news-card p{
    margin:0 14px 16px;
    color:#555;
    line-height:1.45;
}

/* PROGRAMAS */

.program-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.program-card{
    background:#fff;
    border-radius:8px;
    padding:12px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.program-card img{
    height:130px;
    width:100%;
    object-fit:cover;
    border-radius:6px;
    background:#e8e8e8;
}

.program-card h3{
    margin:12px 0 6px;
    font-size:1rem;
}

.program-card p{
    margin:0;
    color:#666;
    font-weight:700;
}

/* ARTICULO */

.article{
    width:min(920px,calc(100% - 32px));
    margin:34px auto;
    background:#fff;
    border-radius:8px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.article > img{
    width:100%;
    max-height:470px;
    object-fit:cover;
    border-radius:8px;
}

.article-body{
    font-size:1.08rem;
    line-height:1.75;
    margin-top:22px;
}

/* TV */

.tv-frame{
    position: relative;
    width: 100vw;
    height: calc(100vh - 80px); /* ajusta si tienes header */
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-frame iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* RADIO */

.radio-live{
    background:linear-gradient(135deg,var(--primary),#111);
    color:#fff;
    border-radius:8px;
    padding:48px;
}

/* ================================
   FOOTER PREMIUM - SPOTIFY RADIO STYLE
================================== */

.site-footer{
    background: radial-gradient(circle at top, #111 0%, #070707 60%, #000 100%);
    color:#fff;
    display:grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap:50px;
    padding:70px max(20px, calc((100vw - 1200px)/2));
    margin-top:70px;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,0.06);
}

/* 🔵 Glow animado estilo Spotify */
.site-footer::before,
.site-footer::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    filter:blur(90px);
    opacity:0.35;
    animation: floatGlow 8s infinite ease-in-out;
}

.site-footer::before{
    background:#1db954;
    top:-100px;
    left:-80px;
}

.site-footer::after{
    background:#e60023;
    bottom:-120px;
    right:-80px;
    animation-delay:3s;
}

@keyframes floatGlow{
    0%,100%{ transform:translateY(0) scale(1); }
    50%{ transform:translateY(20px) scale(1.1); }
}

/* LOGO */
.footer-logo{
    width:200px;
    transition:0.4s ease;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.footer-logo:hover{
    transform:scale(1.06);
    filter:drop-shadow(0 15px 25px rgba(29,185,84,0.3));
}

/* TEXTO */
.site-footer p{
    color:#b3b3b3;
    font-size:14px;
    line-height:1.7;
}

/* TITULOS */
.site-footer h3{
    font-size:16px;
    margin-bottom:16px;
    position:relative;
    letter-spacing:0.5px;
}

.site-footer h3::after{
    content:"";
    width:50px;
    height:2px;
    background:linear-gradient(90deg,#1db954,#00ff88);
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

/* SOCIAL */
.social-row{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:12px;
}

/* BOTONES SOCIAL */
.social-row a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:11px 14px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    color:#fff;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

/* efecto shine */
.social-row a::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.15),transparent);
    transition:0.6s;
}

.social-row a:hover::before{
    left:100%;
}

/* hover verde spotify */
.social-row a:hover{
    background:#1db954;
    border-color:#1db954;
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 15px 35px rgba(29,185,84,0.25);
}

/* LINKS */
.site-footer a{
    color:#b3b3b3;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    display:inline-block;
}

.site-footer a:hover{
    color:#1db954;
    transform:translateX(4px);
}

/* LIVE BADGE */
.footer-live{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(29,185,84,0.15);
    border:1px solid rgba(29,185,84,0.4);
    color:#1db954;
    padding:6px 10px;
    border-radius:50px;
    font-size:12px;
    margin-bottom:12px;
    width:max-content;
}

.footer-live span{
    width:8px;
    height:8px;
    background:#1db954;
    border-radius:50%;
    animation:pulse 1.2s infinite;
}

@keyframes pulse{
    0%{ transform:scale(0.8); opacity:0.7; }
    50%{ transform:scale(1.3); opacity:1; }
    100%{ transform:scale(0.8); opacity:0.7; }
}



/* badge dev */
.dev-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 10px;
    border-radius:50px;
    background:rgba(29,185,84,0.12);
    border:1px solid rgba(29,185,84,0.3);
    color:#1db954;
    font-size:12px;
}

/* RESPONSIVE */
@media (max-width:768px){
    .site-footer{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
        padding:60px 20px;
    }

    .social-row{
        justify-content:center;
    }

    .site-footer h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-credit{
        justify-content:center;
    }
}

/* RESPONSIVE */
@media (max-width:768px){
    .site-footer{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
        padding:60px 20px;
    }

    .social-row{
        justify-content:center;
    }

    .site-footer h3::after{
        left:50%;
        transform:translateX(-50%);
    }
}

/* PLAYER */

.player{
    position:fixed;
    left:50%;
    transform:translateX(-50%);
    bottom:14px;

    width:calc(100% - 30px);
    max-width:1600px;

    z-index:9999;

    background:#080808;
    color:#fff;

    border:1px solid #282828;
    border-radius:14px;

    display:flex;
    align-items:center;
    gap:14px;

    padding:12px 16px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

/* COVER */
.cover{
    width:65px;
    height:65px;
    border-radius:12px;
    object-fit:cover;
    flex-shrink:0;
}

/* BOTON */
.play{
    background:var(--primary);
    color:#fff;
    border:0;
    border-radius:50%;
    width:54px;
    height:54px;
    font-weight:900;
    flex-shrink:0;
}

/* TEXTO */
.player-meta{
    flex:1;
    min-width:0;
}

.player-meta strong{
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.player-meta span{
    color:#cfcfcf;
    font-size:.9rem;
}

/* RANGE */
.player input[type="range"]{
    width:180px;
}

/* MOBILE */
@media(max-width:768px){

    body{
        padding-bottom:110px;
    }

    .player{
        width:calc(100% - 16px);
        bottom:8px;
        padding:10px;
        gap:10px;
        border-radius:12px;
    }

    .cover{
        width:52px;
        height:52px;
    }

    .play{
        width:48px;
        height:48px;
    }

    .player-meta strong{
        font-size:.95rem;
    }

    .player input[type="range"]{
        width:90px;
    }
}

/* RESPONSIVE */

@media (max-width:900px){

    .topbar{
        justify-content:space-between;
        padding:0 18px;
        gap:10px;
    }

    .mainnav{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        right:0;
        background:#000;
        padding:22px;
        flex-direction:column;
        align-items:flex-start;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .mainnav.open{
        display:flex;
    }

    .top-actions .btn{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .brand img{
        width:150px;
    }

    .hero-slider{
        aspect-ratio:1920/500;
        min-height:auto;
    }

    .hero-slide{
        background-size:100% auto;
        background-position:center top;
        background-repeat:no-repeat;
        background-color:#000;
    }

    .hero-copy{
        width:100%;
        padding:20px;
    }

    .hero-copy h1{
        font-size:2rem;
        line-height:1;
    }

    .hero-copy p{
        font-size:1rem;
        line-height:1.4;
    }

    .ticker{
        grid-template-columns:1fr;
    }

    .ticker strong{
        padding:10px;
    }

    .ticker span{
        padding:10px;
    }

    .news-grid,
    .program-grid,
    .site-footer{
        grid-template-columns:1fr;
    }

    .player{
        grid-template-columns:auto 1fr;
    }

    .player input{
        grid-column:1/-1;
        width:100%;
    }
}

@media (min-width:901px) and (max-width:1150px){

    .news-grid,
    .program-grid{
        grid-template-columns:repeat(2,1fr);
    }

}














/* TV EN VIVO */

a.btn.red{
    position:relative;
    overflow:hidden;
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    animation: tvPulse 2s infinite ease-in-out;
}

/* brillo que se mueve */
a.btn.red::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
    animation: shine 2.5s infinite;
}

/* pulso de color */
@keyframes tvPulse{
    0%{
        background:#ef3f35;
        box-shadow:0 0 0 rgba(239,63,53,.0);
    }
    50%{
        background:#01e985;
        box-shadow:0 0 18px rgba(1,233,133,.8);
    }
    100%{
        background:#ef3f35;
        box-shadow:0 0 0 rgba(239,63,53,.0);
    }
}

/* efecto brillo deslizante */
@keyframes shine{
    0%{
        left:-100%;
    }
    100%{
        left:100%;
    }
}







.ticker{
  display:flex;
  align-items:center;
  gap:12px;
  background:#111;
  color:#fff;
  padding:10px 15px;
  overflow:hidden;
  border-bottom:2px solid var(--primary);
}

.ticker strong{
  background:var(--primary);
  color:#ffffff;
  padding:5px 10px;
  border-radius:6px;
  font-weight:700;
  white-space:nowrap;
}

.ticker-wrap{
  overflow:hidden;
  flex:1;
  white-space:nowrap;
  position:relative;
}

/* 🔥 MOVIMIENTO PRINCIPAL */
.ticker-text{
  display:inline-flex;
  white-space:nowrap;
  gap:30px;

  animation: scrollTicker 50s linear infinite;
  will-change: transform;
}

/* 🔥 ENTRADA MÁS RÁPIDA (clave del efecto) */
@keyframes scrollTicker{
  0%   { transform: translateX(5%); }   /* 👈 entra casi inmediato */
  100% { transform: translateX(-100%); }
}

.ticker-text span{
  display:inline-block;
  padding-right:10px;
}


.live-hero{
  background:#111;
  color:#fff;
  padding:30px 20px;
  text-align:center;
  border-bottom:2px solid var(--primary);
}

.live-title h1{
  margin:0;
  font-size:28px;
}

.live-title p{
  opacity:.8;
  margin-top:8px;
}

.live-badge{
  margin-top:15px;
  display:inline-block;
  background:red;
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-weight:700;
  animation:pulse 1.5s infinite;
}

.tv-frame iframe{
  width:100%;
  height:500px;
  border:none;
}

@keyframes pulse{
  0%{transform:scale(1); opacity:1;}
  50%{transform:scale(1.05); opacity:.7;}
  100%{transform:scale(1); opacity:1;}
}








.cover{
  width:65px;
  height:65px;
  border-radius:12px;
  object-fit:cover;
  margin-right:10px;
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.player{
  display:flex;
  align-items:center;
  gap:12px;
}








@media (max-width: 768px){

  .site-footer{
    display: grid !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 30px !important;
    padding: 50px 20px !important;
  }

  .site-footer > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-logo{
    display: block !important;
    margin: 0 auto !important;
    max-width: 160px;
  }

  .social-row{
    justify-content: center !important;
  }

  .site-footer h3,
  .site-footer h4{
    text-align: center;
  }

  .site-footer h3::after{
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}



.tv-page{
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}

/* CONTENEDOR */
.tv-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #000;
    padding: 10px 0;
}

/* REPRODUCTOR */
.tv-wrapper iframe{
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

/* MOBILE */
@media (max-width: 768px){

    .tv-wrapper{
        padding: 0;
    }

    .tv-wrapper iframe{
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

}






.live-hero{
    width:100%;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    color:#fff;
    padding:60px 20px;
    text-align:center;
}

.live-hero-content{
    max-width:800px;
}

.live-status{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    color:#ff3b3b;
    font-weight:700;
    margin-left:6px;
}

.live-dot{
    width:10px;
    height:10px;
    background:#ff3b3b;
    border-radius:50%;
    display:inline-block;
    animation:pulse 1.2s infinite;
}

@keyframes pulse{
    0%{transform:scale(1); opacity:1;}
    50%{transform:scale(1.6); opacity:0.5;}
    100%{transform:scale(1); opacity:1;}
}

.live-text h1{
    font-size:42px;
    margin:15px 0 10px;
}

.live-text p{
    font-size:16px;
    opacity:0.85;
    line-height:1.6;
}

.live-actions{
    margin-top:25px;
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-live{
    background:#10a66a;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-live:hover{
    background:#0e8c59;
    transform:translateY(-2px);
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border:1px solid #fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}


/* ================= PROGRAMACIÓN ================= */

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:20px;
}

.program-card{
    background:#00f07f;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.program-card:hover{
    transform:translateY(-6px) scale(1.02);
}

/* 🔥 CAMBIO IMPORTANTE */
.program-image{
    width:100%;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* 🔥 CLAVE: NO forzar altura */
.program-image img{
    width:100%;
    height:auto;        /* ✔ respeta proporción real */
    display:block;
}

/* contenido */
.program-content{
    padding:12px;
    text-align:center;
    background:#00f07f;
}

.program-content h3{
    font-size:16px;
    margin:10px 0 5px;
    color:#000;
}

.program-content p{
    font-size:13px;
    opacity:0.8;
    color:#000;
}




/* =========================
   CONTENIDO NOTICIAS
========================= */

.article-body{
    width:100%;
    overflow:hidden;
    word-break:break-word;
    line-height:1.9;
    font-size:1.08rem;
}

/* imágenes */
.article-body img{
    max-width:100% !important;
    height:auto !important;
    display:block;
    margin:25px auto;
    border-radius:12px;
}

/* iframes videos */
.article-body iframe{
    width:100% !important;
    max-width:100% !important;
    min-height:420px;
    border:0;
    border-radius:12px;
}

/* videos */
.article-body video{
    width:100% !important;
    height:auto !important;
    border-radius:12px;
}

/* tablas */
.article-body table{
    width:100% !important;
    display:block;
    overflow:auto;
}

/* textos largos */
.article-body p,
.article-body span,
.article-body div{
    max-width:100%;
    overflow-wrap:break-word;
}

/* embeds facebook */
.article-body .fb-post,
.article-body .fb-video{
    max-width:100% !important;
}

/* mobile */
@media(max-width:768px){

    .article{
        padding:16px;
    }

    .article-body{
        font-size:1rem;
        line-height:1.75;
    }

    .article-body iframe{
        min-height:220px;
    }

}





/* =========================================
   ARTICULO NOTICIA
========================================= */

.article-page{
    width:100%;
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.article{
    background:#111;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
}

.article img{
    width:100%;
    display:block;
    object-fit:cover;
    max-height:500px;
}

.article-category{
    display:inline-block;
    margin:25px 25px 10px;
    background:var(--primary);
    color:#000;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.article-title{
    font-size:38px;
    line-height:1.2;
    color:#fff;
    margin:0 25px 15px;
    font-weight:800;
}

.article-date{
    display:block;
    margin:0 25px 25px;
    color:#aaa;
    font-size:14px;
}

.article-body{
    padding:0 25px 35px;
    color:#ddd;
    font-size:18px;
    line-height:1.9;
    word-break:break-word;
}

.article-body p{
    margin-bottom:22px;
}

.article-body img{
    width:100%;
    border-radius:12px;
    margin:25px 0;
}

/* =========================================
   NAVEGACION NOTICIAS
========================================= */

.article-navigation{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.article-nav{
    background:#111;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    transition:.25s;
    border:1px solid rgba(255,255,255,.06);
}

.article-nav:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
}

.article-nav-image{
    width:100%;
    height:180px;
    overflow:hidden;
}

.article-nav-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.article-nav-content{
    padding:18px;
}

.article-nav-content small{
    display:block;
    color:var(--primary);
    margin-bottom:10px;
    font-size:13px;
    font-weight:700;
}

.article-nav-content strong{
    display:block;
    color:#fff;
    font-size:17px;
    line-height:1.5;
    margin-bottom:12px;
}

.article-nav-date{
    color:#999;
    font-size:13px;
}

/* =========================================
   PROGRAMAS
========================================= */

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:25px;
}

.program-card{
    background:#111;
    border-radius:16px;
    overflow:hidden;
    transition:.25s;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.program-card:hover{
    transform:translateY(-5px);
}

.program-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.program-card h3{
    color:#fff;
    font-size:19px;
    margin:15px 15px 8px;
}

.program-card p{
    color:#bbb;
    font-size:14px;
    margin:0 15px 18px;
}

/* =========================================
   TV
========================================= */

.tv-page{
    width:100%;
    background:#000;
}

.tv-wrapper{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:20px;
}

.tv-wrapper iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    border-radius:16px;
    display:block;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.article-page{
    padding:15px;
    margin:20px auto;
}

.article-title{
    font-size:28px;
}

.article-body{
    font-size:16px;
    line-height:1.8;
}

.article-navigation{
    grid-template-columns:1fr;
}

.article-nav-image{
    height:160px;
}

.program-card img{
    height:200px;
}

.tv-wrapper{
    padding:10px;
}

}








