/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arial", sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ===== TIPOGRAFÍAS PERSONALIZADAS ===== */
@font-face {
    font-family: "Impact";
    src: url("impact.woff2") format("woff2"),
         url("impact.woff") format("woff"),
         url("impact.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== CONTENEDORES PRINCIPALES ===== */
.main-content {
    flex: 1;
    width: 100%;
}

/*==========================
        HEADER
==========================*/

header{
    width:100%;
    height:88px;
    background-color:#000; 
    margin:0 auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding: 42px;

    position:relative;
    z-index:100;
}

.logo{
    height:54px;
    width:auto;
}

nav ul{
    display:flex;
    align-items:center;
    gap:30px;

    list-style:none;

    margin:0;
    padding:0;

    background:none;
}

nav ul li a{

    color:#ffffff;

    text-decoration:none;

    font-size:1.08rem;

    font-weight:600;

    letter-spacing:.5px;

    transition:.25s ease;
}

nav ul li a:hover{

    color:#ffe44e;

}

nav ul li a.active{

    color:#ffe44e;

}

header nav a{

    position:relative;

}

header nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#ffe44e;

    transition:.25s;

}

header nav a:hover::after{

    width:100%;

}

header nav a.active::after{

    width:100%;

}
/* ===== PÁGINA DE INICIO (CONTAINER) ===== */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("images/hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
}
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.container > * {
    position: relative;
    z-index: 2;
}

/* ===== MAIN ===== */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    display: block;
}

iframe {
    border: none;
}

/* ===== TÍTULOS ===== */
.main-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin-top: 8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.sub-text {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== REPRODUCTOR Y HISTORIAL ===== */
.player-container {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
}

.player, .history {
    width: 100%;
    margin: 0 auto;
}

.history h3 {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 1.5rem;
    color: #ffe44e;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.history-iframe {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background: transparent;
    display: block;
    overflow: hidden;
}

/* ===== SECCIÓN BLANCA Y MARQUESINA ===== */
.white-section {
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 1.2rem 0;
    border-top: 2px solid #ffe44e;
    border-bottom: 2px solid #ffe44e;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.marquee span {
    display: inline-block;
    margin: 0 1.5rem;
    color: #000;
    transition: all 0.3s;
}

.marquee span:hover {
    color: #ffe44e;
    transform: scale(1.1);
}

/* ===== NOTICIAS (INDEX - TARJETAS) ===== */
.news-section-index {
    width: 100%;
    background-color: #000;
    padding: 4rem 2rem;
}

.news-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2.8rem;
    color: #ffe44e;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 3px solid #ffe44e;
    width: 100%;
    padding-bottom: 0.5rem;
}

.news-grid {
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #ffe44e;
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-title {
    font-size: 1.3rem;
    color: #ffe44e;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.news-card-summary {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-card-link {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background-color 0.3s;
}

.news-card-link:hover {
    background-color: #ffe44e;
}

/* =========================================
   PÁGINA DE NOTICIAS — DISEÑO EDITORIAL
========================================= */

.news-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem;
    background-color: #fff;
    color: #000;
}

/* Cada noticia */

.news-item.with-image {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    width: 100%;
    min-height: 230px;
    margin-bottom: 2rem;
    padding: 0;
    overflow: hidden;

    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;

    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.07);

    text-align: left;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.news-item.with-image:hover {
    transform: translateY(-4px);
    border-color: #ffe44e;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.news-item.with-image:last-child {
    margin-bottom: 0;
}

/* Imagen */

.news-image {
    width: 100%;
    height: 100%;
    min-height: 230px;

    display: block;
    object-fit: cover;
    object-position: center;

    border: none;
    border-radius: 0;

    transition: transform 0.4s ease;
}

.news-item.with-image:hover .news-image {
    transform: scale(1.035);
}

/* Contenido */

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 0;
    padding: 2rem 2.2rem;

    text-align: left;
}

/* Título */

.news-item-title {
    width: 100%;
    margin: 0 0 0.75rem;

    color: #000;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.18;

    text-align: left;
}

.news-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-item-title a:hover {
    color: #9c8500;
}

/* Fecha y autor */

.news-date {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;

    margin: 0 0 1rem;

    color: #999;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;

    text-align: left;
}

/* Resumen */

.news-summary {
    display: -webkit-box;
    width: 100%;
    margin: 0 0 1.4rem;
    overflow: hidden;

    color: #444;
    font-size: 1rem;
    line-height: 1.65;

    text-align: left;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Botón */

.news-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;
    padding: 0.7rem 1.4rem;

    background-color: #ffe44e;
    color: #000;

    border: 2px solid #ffe44e;
    border-radius: 50px;

    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.news-more:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Contenedor del botón "más noticias" */

.more-news-container {
    width: 100%;
    margin-top: 3rem;
    text-align: center;
}
/* =========================================
   BOTÓN VOLVER AL INICIO
========================================= */

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 0.5rem auto 1.5rem;
    padding: 0.85rem 1.8rem;

    background-color: #000;
    color: #fff;

    border: 2px solid #000;
    border-radius: 50px;

    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.back-link:hover {
    background-color: #ffe44e;
    border-color: #ffe44e;
    color: #000;
    transform: translateY(-2px);
}
.more-news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.9rem 2.2rem;

    background-color: #ffe44e;
    color: #000;

    border: 2px solid #000;
    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.more-news-btn:hover {
    background-color: #ffe44e;
    border-color: #ffe44e;
    color: #000;
    transform: translateY(-2px);
}


/* =========================================
   TABLETS
========================================= */

@media (max-width: 950px) {

    .news-section{
        padding:1.5rem 1rem 1.5rem;
    }


    .news-item.with-image {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .news-content {
        padding: 1.6rem;
    }

    .news-item-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   MÓVILES
========================================= */

@media (max-width: 768px) {

    .news-section{
        padding:1.5rem 1rem 1.5rem;
    }

    .news-item.with-image {
        display: flex;
        flex-direction: column;

        min-height: 0;
        margin-bottom: 1.5rem;

        border-radius: 12px;
    }

    .news-image {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;

        object-fit: cover;
    }

    .news-content {
        width: 100%;
        padding: 1.4rem 1.25rem 1.5rem;
    }

    .news-item-title {
        margin-bottom: 0.65rem;
        font-size: 1.35rem;
        line-height: 1.22;
    }

    .news-date {
        margin-bottom: 0.8rem;
        font-size: 0.75rem;
    }

    .news-summary {
        margin-bottom: 1.2rem;
        font-size: 0.93rem;
        line-height: 1.55;

        -webkit-line-clamp: 4;
    }

    .news-more {
        width: 100%;
    }
}
body.internal-page .page-title {
    position: relative;
    margin: 3rem auto 1.8rem;
    padding-bottom: 1rem;

    color: #000;
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1;
    letter-spacing: 1px;
    text-align: center;
}

body.internal-page .page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 70px;
    height: 5px;

    background-color: #ffe44e;
    transform: translateX(-50%);
}
/* ===== PODCAST ===== */
.podcast-section {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    color: #333;
}

.podcast-title {
    font-family: "Impact", sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 3px solid #ffe44e;
    width: 100%;
    padding-bottom: 0.5rem;
}

.podcast-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.episodios-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.episodios-lista iframe {
    width: 100%;
    height: 152px;
    border-radius: 12px;
}

.podcast-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.banner-podcast {
    max-width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner-podcast:hover {
    transform: scale(1.02);
}

.btn-todos-capitulos {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.2s;
    border: 2px solid #ffe44e;
    text-align: center;
    margin-top: 1.5rem;
}

.btn-todos-capitulos:hover {
    transform: scale(1.02);
}

/* ===== PÁGINA DE PODCAST - DISEÑO EDITORIAL ===== */
.podcast-page {
    background: #000;
}

/* Hero editorial */
.hero-podcast {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: url("images/PODCAST.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    border-bottom: 3px solid #ffe44e;
}

/* Overlay */
.hero-podcast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-podcast-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.tag-podcast {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* TÍTULO - Tamaño base (móvil) */
.hero-podcast-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2.5rem;
    color: #ffe44e;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-podcast-description {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-podcast-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 0.9rem;
}

/* 📱 Móvil - imagen diferente */
@media (max-width: 768px) {
    .hero-podcast {
        background: url("images/PODCAST-movil.webp") no-repeat center center;
        background-size: cover;
        min-height: 40vh;
        padding: 2rem 1rem;
    }
}
/* Móvil - Episodios de podcast a ancho completo */
@media (max-width: 768px) {
    /* Eliminar padding lateral del contenedor principal */
    .episodios-section {
        padding: 2rem 0 !important;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Tarjetas de episodio - ancho completo sin bordes redondeados */
    .episodio-card {
        border-radius: 0;
        margin-bottom: 1rem;
        border-left: none;
        border-right: none;
    }
    
    /* Contenido de la tarjeta - ajustar padding */
    .episodio-info {
        padding: 1rem;
    }
    
    .episodio-player {
        padding: 0 0 1rem 0;
    }
    
    /* Eliminar márgenes laterales del contenedor interno */
    .internal-container {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    /* Asegurar que el body no tenga márgenes blancos */
    body.podcast-page {
        margin: 0;
        padding: 0;
    }
    
    /* El iframe ocupa todo el ancho */
    .episodio-player iframe {
        width: 100%;
        border-radius: 0;
    }
}

/* 💻 Escritorio - título más grande */
@media (min-width: 769px) {
    .hero-podcast-title {
        font-size: 4rem;
        letter-spacing: 4px;
    }
}
.spotify-badge {
    height: 30px;
    width: auto;
}

/* Sección de episodios */
.episodios-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.episodios-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2rem;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    border-bottom: 2px solid #ffe44e;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.5rem;
}

/* Tarjetas de episodios */
.episodio-card {
    background: #111;
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.episodio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #ffe44e;
}

.episodio-info {
    padding: 2rem 2rem 1rem;
}

.episodio-number {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.episodio-titulo {
    font-size: 1.6rem;
    color: #ffe44e;
    margin-bottom: 0.5rem;
}

.episodio-fecha {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    font-style: italic;
}

.episodio-descripcion {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.episodio-player {
    padding: 0 2rem 2rem;
}

/* Botón más episodios */
.more-episodios {
    text-align: center;
    margin-top: 3rem;
}

.btn-more-episodios {
    display: inline-block;
    background-color: transparent;
    color: #ffe44e;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #ffe44e;
    transition: all 0.3s ease;
}

.btn-more-episodios:hover {
    background-color: #ffe44e;
    color: #000;
    transform: scale(1.02);
}



/* ===== FOOTER ===== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 2rem 3rem;
    border-top: 3px solid #ffe44e;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-footer {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.social-icon-footer:hover {
    transform: scale(1.1);
}

.footer-title {
    font-size: 0.85rem;
    color: #ffe44e;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.footer-media-kit {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-media-kit:hover {
    color: #ffe44e;
    text-decoration: underline;
}

/* ===== PÁGINAS INTERNAS ===== */
body.internal-page {
    background: white;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internal-container {
    margin: 0 auto;
    background-color: white;
    width: 100%;
}

body.internal-page header nav a {
    color: white;
}

body.internal-page header nav a.active {
    color: #ffe44e !important;
}

body.internal-page .podcast-section {
    background-color: #000;
    color: #fff;
}

body.internal-page .podcast-section .podcast-title {
    color: #ffe44e;
}

body.internal-page .podcast-section .podcast-item {
    background-color: #383838;
}


/* ===== HERO FEATURE ===== */

.hero-feature {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    min-height: 80vh;
    text-align: left;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    left: 60px;
    bottom: 70px;
    max-width: 820px;
    z-index: 5;
    text-align: left;
}

.tag {
    background-color: #ffe44e;
    color: #000;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-title {
    font-family: "Montserrat", "Arial Black", Impact, sans-serif;
    font-size: clamp(2.2rem, 4.5vw + 0.5rem, 5rem);
    line-height: 0.95;
    font-weight: 900;
    color: #fff;
    text-transform: none;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 650px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-btn {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: scale(1.05);
    background-color: #e6c300;
}

/* ===========================
   HERO MÓVIL
=========================== */

@media (max-width: 768px) {

    .hero-feature {
        position: relative;
        width: 100%;

        /* Altura */
        height: 500px;
        min-height: 500px;
        height: clamp(500px, 70vh, 620px);

        padding: 0;
        overflow: hidden;

        /* Ajustes para Safari */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 48% center;
        background-attachment: scroll;
    }

    .hero-content {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 100px;
    }

    .tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.9rem;
        margin-bottom: 0.65rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        line-height: 0.95;
        margin-bottom: 0.65rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 0.9rem;
        max-width: 100%;
    }

    .hero-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}
/* ===== REPRODUCTOR FLOTANTE TIPO CHAT - SOLO ESCRITORIO ===== */
/* Estilos base (móvil por defecto) - como estaba antes */
.radio-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
}

.radio-bar {
    background: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-top: 2px solid #ffe44e;
}

.radio-live {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffe44e;
}

.radio-text {
    font-size: 1rem;
    font-weight: bold;
}

.radio-toggle {
    font-size: 1.2rem;
}

.radio-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.radio-floating.active .radio-expand {
    max-height: 400px;
}

.radio-iframe {
    width: 100%;
    height: 120px;
    border-radius: 12px;
}

.history-iframe {
    width: 100%;
    height: 150px;
    border-radius: 12px;
}

/* ===== VERSIÓN ESCRITORIO (pantallas mayores a 768px) ===== */
@media (min-width: 769px) {
    .radio-floating {
        position: fixed;
        bottom: 20px;
        right: 20px;            
        left: auto !important;  
        width: 340px;
        max-width: calc(100% - 40px);
        z-index: 9999;
        background: #000;
        border-radius: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        font-family: "Arial", sans-serif;
    }

    .radio-bar {
        padding: 1rem 1.2rem;
    }

    .radio-live {
        font-size: 0.85rem;
        font-weight: bold;
    }

    .radio-text {
        font-size: 0.9rem;
    }

    .radio-toggle {
        font-size: 1.1rem;
    }

    .radio-expand {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .radio-floating.active .radio-expand {
        max-height: 380px;
    }

    .radio-iframe {
        height: 140px;
        border-radius: 0;
    }

    .history-iframe {
        height: 200px;
        border-radius: 0;
    }
}

/* =========================================
   BUSCADOR DE NOTICIAS
========================================= */

.search-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.7rem;

    width: 100%;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 48px;

    padding: 0 1.2rem;

    background-color: #fff;
    color: #222;

    border: 1px solid #d5d5d5;
    border-radius: 8px;

    font-size: 0.95rem;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.search-input:focus {
    border-color: #ffe44e;
    box-shadow: 0 0 0 4px rgba(255, 228, 78, 0.22);
}

.search-btn {
    height: 48px;
    padding: 0 1.8rem;

    background-color: #ffe44e;
    color: #000;

    border: 2px solid #ffe44e;
    border-radius: 8px;

    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.search-btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 520px) {

    .search-container {
        flex-direction: row;
        gap: .5rem;
    }

    .search-input {
        flex: 1;
    }

    .search-btn {
        width: auto;
        padding: 0 1.2rem;
        flex-shrink: 0;
    }

}
/* ===== PAGINACIÓN ===== */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto;
}

.pagination-btn {
    background-color: #ffe44e;
    color: #000;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.pagination-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination-info {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* ===== WIDGETS SPOTIFY ===== */
.episodios-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* ===== AJUSTES PARA MÓVIL - MENÚ ===== */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 0.3rem;           /* Espacio mínimo entre elementos */
        padding: 0.3rem 0.6rem; /* Padding reducido */
        flex-wrap: wrap;        /* Permite que los elementos bajen a otra línea */
        justify-content: center; /* Centra los elementos */
        border-radius: 999px;
    }
    
    nav ul li a {
        font-size: 0.7rem;      /* Texto más pequeño */
        padding: 0.3rem 0.6rem;  /* Padding interno reducido */
        white-space: nowrap;     /* Evita que el texto se divida en dos líneas */
        display: inline-block;
    }
}

/* Para móviles muy pequeños (ancho menor a 480px) */
@media (max-width: 480px) {
    nav ul {
        gap: 0.2rem;            /* Espacio aún más reducido */
        padding: 0.2rem 0.4rem;
    }
    
    nav ul li a {
        font-size: 0.65rem;     /* Texto aún más pequeño */
        padding: 0.2rem 0.4rem;
    }
}

/* ===== RESPONSIVE (MEDIA QUERIES UNIFICADAS) ===== */
@media (max-width: 1024px) {
    .radio-iframe {
        height: 180px;
    }
    .history-iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    header, body.internal-page header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .sub-text {
        font-size: 1rem;
    }
    
    .white-section .marquee {
        font-size: 1.3rem;
        animation-duration: 20s;
    }
    
    .white-section .marquee span {
        margin: 0 0.8rem;
    }
    
    .news-item.with-image {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: auto;
    }
    
    .news-title, .podcast-title {
        font-size: 1.8rem;
    }
    
    .news-section-index, .podcast-section {
        padding: 2rem 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card-image {
        height: 180px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .radio-iframe {
        height: 100px;
    }
    
    .history-iframe {
        height: 120px;
    }
    
    .episodios-lista iframe {
        height: 180px;
    }
    
    .btn-todos-capitulos, .more-news-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .noticia-detalle {
         padding-bottom: 0;
    }
    
    .noticia-detalle h1 {
        font-size: 1.8rem;
    }
    
    .search-container {
        margin: 1rem;
        padding: 0 1rem;
    }
    
    .pagination-container {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    body.internal-page header {
        padding: 1rem;
    }
    
    .podcast-section {
        padding: 2rem 1rem;
    }
    
    .internal-container {
        width: 100%;
        overflow-x: hidden;
    }
}

/* ===== ENLACES DESTACADOS EN NOTICIAS ===== */
.noticia-contenido .highlight-link {
    background-color: #ffe44e;
    color: #000000;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
}

.noticia-contenido .highlight-link:hover {
    background-color: #e6c300;
    transform: scale(1.02);
}
/* =========================================
   DETALLE DE NOTICIA
========================================= */

/* Evita que el main global centre el artículo */

body.internal-page main {
    justify-content: flex-start;
}

/* Contenedor principal */

.noticia-detalle {
    display: block;
    width: calc(100% - 40px);
    max-width: 1050px;

    margin: 0 auto;
    padding: 3.5rem 0 5rem;

    color: #222;
    text-align: left;
}

/* Título principal */

.noticia-detalle h1 {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 0.75rem;

    color: #111;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 800;
    line-height: 1.12;
    text-align: left;
}

/* Fecha y autor */

.noticia-detalle .news-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;

    width: 100%;
    max-width: 900px;

    margin: 0 auto 2rem;
    padding-bottom: 1rem;

    border-bottom: 3px solid #ffe44e;

    color: #888;
    font-size: 0.85rem;
    font-style: normal;
    text-align: left;
}

/* Imagen principal */

.noticia-detalle > .noticia-imagen,
.noticia-detalle > .noticia-media,
.noticia-detalle > img {
    display: block;

    width: 100%;
    max-width: 900px;
    height: auto;

    margin: 0 auto 2.5rem;

    border: none;
    border-radius: 12px;

    object-fit: cover;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Contenido del artículo */

.noticia-detalle .noticia-contenido {
    display: block;
    width: 100%;
    max-width: 820px;

    margin: 0 auto;
    padding: 0;

    text-align: left;
}

/* Párrafos */

.noticia-detalle .noticia-contenido p {
    width: 100%;

    margin: 0 0 1.7rem;

    color: #333;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
}

/* Primer párrafo ligeramente destacado */

.noticia-detalle .noticia-contenido p:first-child {
    font-size: 1.15rem;
    line-height: 1.75;
}

/* Subtítulos */

.noticia-detalle .noticia-contenido h2 {
    margin: 2.7rem 0 1rem;

    color: #111;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    text-align: left;
}

.noticia-detalle .noticia-contenido h3 {
    margin: 2.2rem 0 1rem;

    color: #111;
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: left;
}

/* Enlaces normales dentro de la nota */

.noticia-detalle .noticia-contenido a:not(.highlight-link) {
    color: #806c00;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #ffe44e;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Listas */

.noticia-detalle .noticia-contenido ul,
.noticia-detalle .noticia-contenido ol {
    margin: 0 0 1.7rem 1.5rem;
    padding-left: 1rem;

    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.noticia-detalle .noticia-contenido li {
    margin-bottom: 0.7rem;
}

/* Imágenes dentro del cuerpo de la noticia */

.noticia-detalle .noticia-contenido img {
    display: block;
    width: 100%;
    height: auto;

    margin: 2rem auto;

    border-radius: 10px;
}

/* Videos e iframes */

.noticia-detalle .noticia-contenido iframe,
.noticia-detalle .noticia-contenido video {
    display: block;
    width: 100%;
    max-width: 820px;

    margin: 2rem auto;

    border-radius: 12px;
}

/* Botón regresar */

.noticia-detalle .back-link {
    display: flex;

    width: fit-content;

    justify-content: center;
    align-items: center;

    margin: 10px auto 0;

    padding: 0.8rem 1.8rem;

    background-color: #000;
    color: #fff;

    border-radius: 50px;

    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        background-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.noticia-detalle .back-link:hover {
    background-color: #ffe44e;
    color: #000;
    transform: translateY(-2px);
}

/* =========================================
   DETALLE DE NOTICIA — MÓVIL
========================================= */

@media (max-width: 768px) {

    .noticia-detalle {
        width: 100%;
        padding: 2rem 1rem 0;    
    }

    .noticia-detalle h1 {
        max-width: 100%;
        margin-bottom: 0.7rem;

        font-size: 2rem;
        line-height: 1.15;
    }

    .noticia-detalle .news-date {
        max-width: 100%;
        margin-bottom: 1.5rem;

        font-size: 0.75rem;
    }

    .noticia-detalle > .noticia-imagen,
    .noticia-detalle > .noticia-media,
    .noticia-detalle > img {
        width: calc(100% + 2rem);
        max-width: none;

        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 2rem;

        border-radius: 0;
        box-shadow: none;
    }

    .noticia-detalle .noticia-contenido {
        width: 100%;
        max-width: 100%;
    }

    .noticia-detalle .noticia-contenido p,
    .noticia-detalle .noticia-contenido p:first-child {
        font-size: 1rem;
        line-height: 1.75;
    }

    .noticia-detalle .noticia-contenido h2 {
        font-size: 1.6rem;
    }

    .noticia-detalle .noticia-contenido h3 {
        font-size: 1.3rem;
    }

    .noticia-detalle .back-link {
        margin: 8px auto 0;
    }
}
/* Enlaces destacados en todo el sitio */
.highlight-link {
    background-color: #ffe44e;
    color: #000000;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.highlight-link:hover {
    background-color: #e6c300;
    transform: scale(1.02);
}

/* ===== PÁGINA NOSOTROS ===== */
.about-page {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.page-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2.8rem;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.team-section h2 {
    font-size: 1.8rem;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.team-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffe44e;
    margin-bottom: 1rem;
    display: block;
}

.team-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin: 0.5rem 0 0.2rem 0;
    text-align: center;
}

.team-role {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.8rem;
    text-align: center;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    text-align: center;
    margin-top: 0.5rem;
}

.team-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #ffe44e;
    color: #000;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0.5rem 0 0.8rem 0;
    transition: background-color 0.3s, transform 0.2s;
}

.team-social:hover {
    background-color: #e6c300;
    transform: scale(1.05);
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-intro {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .team-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Tarjetas de episodios */
.episodio-card {
    background: #111;
    border-radius: 20px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.episodio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #ffe44e;
}

.episodio-info {
    padding: 2rem 2rem 1rem;
}

.episodio-number {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.episodio-titulo {
    font-size: 1.6rem;
    color: #ffe44e;
    margin-bottom: 0.5rem;
}

.episodio-fecha {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    font-style: italic;
}

.episodio-descripcion {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.episodio-player {
    padding: 0 2rem 2rem;
}

/* Etiqueta "Episodio reciente" - misma fuente que news-title pero negra */
.episodio-reciente-tag {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2.8rem;
    color: #ffe44e;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
}

/* Espacio adicional en móvil entre footer y reproductor flotante */
@media (max-width: 768px) {
    .footer {
        padding-bottom: 90px; /* Aumenta el espacio inferior del footer */
    }
}

/* ===== PÁGINA REVISTA ===== */
.revista-page {
    background: #000;
}

/* Hero */
.hero-revista {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: url("images/fondorevista.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    border-bottom: 3px solid #ffe44e;
}

/* Overlay para que el texto sea legible */
.hero-revista::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscurece la imagen */
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
.hero-revista-content {
    position: relative;
    z-index: 2;
}

.tag-revista {
    display: inline-block;
    background-color: #ffe44e;
    color: #000;
    font-weight: bold;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.hero-revista-title {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 4rem;
    color: #ffe44e;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-revista-description {
    font-size: 1.2rem;
    color: #ddd;
    line-height: 1.6;
}

/* Edición actual */
.edicion-actual {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.edicion-titulo {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 2rem;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #ffe44e;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.5rem;
}

.edicion-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.edicion-portada {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.portada-img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #ffe44e;
    margin-bottom: 1rem;
}

.descargar-btn, .leer-online-btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.descargar-btn {
    background-color: #ffe44e;
    color: #000;
}

.leer-online-btn {
    background-color: #ffe44e;
    color: #000;
}

.descargar-btn:hover, .leer-online-btn:hover {
    transform: scale(1.02);
}

.edicion-contenido {
    flex: 2;
}

.entrevista-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.entrevista-pagina {
    font-family: monospace;
    font-size: 0.9rem;
    color: #ffe44e;
    background: #222;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    min-width: 60px; /* Ancho mínimo uniforme */
    text-align: center;
    height: 28px; /* Altura fija */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.entrevista-info h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.entrevista-info p {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.leer-entrevista {
background-color: #ffe44e;
    color: #000;
    font-size: 0.85rem;
    font-weight: bold;
}

.leer-entrevista:hover {
    text-decoration: underline;
}

/* Ediciones anteriores */
.ediciones-anteriores {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    border-top: 1px solid #333;
}

.ediciones-titulo {
    font-size: 1.5rem;
    color: #ffe44e;
    margin-bottom: 1.5rem;
}

.archivo-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.archivo-item {
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.archivo-item a {
    color: #ffe44e;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-revista-title {
        font-size: 2.5rem;
    }
    
    .edicion-grid {
        flex-direction: column;
    }
    
    .entrevista-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .entrevista-pagina {
        width: fit-content;
    }
}

/* =========================================
   SECCIÓN PODCAST — VISUAL NOISE
========================================= */

.visual-noise-section {
    width: 100%;
    background-color: #000;
    padding: 0;
    overflow: hidden;
}

.visual-noise-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    line-height: 0;
}

.visual-noise-banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.visual-noise-banner-link:hover .visual-noise-banner {
    transform: scale(1.01);
    filter: brightness(1.05);
}

.visual-noise-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem 2rem;
    background-color: #000;
}

.visual-noise-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.visual-noise-btn:hover {
    transform: translateY(-2px);
}

.visual-noise-btn-primary {
    background-color: #ffe44e;
    color: #000;
    border: 2px solid #ffe44e;
}

.visual-noise-btn-primary:hover {
    background-color: #e6c300;
    border-color: #e6c300;
}

.visual-noise-btn-secondary {
    background-color: transparent;
    color: #ffe44e;
    border: 2px solid #ffe44e;
}

.visual-noise-btn-secondary:hover {
    background-color: #ffe44e;
    color: #000;
}

/* ===== VERSIÓN MÓVIL ===== */

@media (max-width: 768px) {

    .visual-noise-section {
        padding-bottom: 0;
    }

    .visual-noise-banner {
        width: 100%;
        height: auto;
    }

    .visual-noise-actions {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.25rem 1rem 2rem;
    }

    .visual-noise-btn {
        width: 100%;
        max-width: 340px;
        font-size: 0.82rem;
        padding: 0.75rem 1.2rem;
    }
}




/*==================================================
=            COMPARTIR NOTICIA
==================================================*/

.share-news{
    width:100%;
    margin:70px auto 50px;
    padding:45px 0;
    text-align:center;
}

.share-news-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;

    margin-bottom:35px;

    color:#000000;
    font-size:.95rem;
    font-weight:700;
    letter-spacing:8px;
    text-transform:uppercase;
}

.share-news-title::before,
.share-news-title::after{
    content:"";
    width:180px;
    max-width:20vw;
    height:2px;
    background:#ffe44e;
    opacity:.7;
}

.share-news-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:22px;
}

.share-icon{
    width:64px;
    height:64px;

    border:none;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    cursor:pointer;

    transition:.25s ease;

    box-shadow:0 0 0 rgba(255,228,78,0);

    font-size:30px;
}

.share-icon i{
    pointer-events:none;
}

/* Colores */

#nativeShareButton{
    background:#ffe44e;
    color:#000;
}

#shareWhatsapp{
    background:#25D366;
    color:#fff;
}

#shareFacebook{
    background:#1877F2;
    color:#fff;
}

#shareX{
    background:#000;
    color:#fff;
}

#shareTelegram{
    background:#2AABEE;
    color:#fff;
}

#copyNewsLink{
    background:#111;
    color:#fff;
}

/* Hover */

.share-icon:hover{

    transform:
        translateY(-6px)
        scale(1.08);

    box-shadow:
        0 0 18px rgba(255,228,78,.55);

}

/* Mensaje inferior */

.copy-link-message{

    margin-top:28px;

    font-size:.95rem;

    color:#888;

    min-height:22px;

}

/* Móvil */

@media (max-width:768px){

    .share-news{

        margin:50px auto;

        padding:30px 0;

    }

    .share-news-title{

        gap:15px;

        font-size:.75rem;

        letter-spacing:5px;

    }

    .share-news-title::before,
    .share-news-title::after{

        width:60px;

    }

    .share-news-buttons{

        gap:14px;

    }

    .share-icon{

        width:52px;
        height:52px;

        font-size:22px;

    }

}



@media (max-width: 768px) {

    .share-news {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 12px auto 8px !important;
        padding: 18px 15px 12px !important;

        position: relative !important;
        z-index: 5 !important;

        text-align: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .share-news-title {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        margin: 0 0 18px !important;

        gap: 10px !important;

        color: #000 !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        letter-spacing: 3px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    .share-news-title::before,
    .share-news-title::after {
        content: "" !important;
        display: block !important;

        width: 35px !important;
        min-width: 35px !important;
        height: 2px !important;

        background-color: #ffe44e !important;
    }

    .share-news-buttons {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;

        width: 100% !important;
        gap: 12px !important;
    }

    .share-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        flex: 0 0 50px !important;
        width: 50px !important;
        height: 50px !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-radius: 50% !important;

        font-size: 21px !important;
    }

    .copy-link-message {
        min-height: 0 !important;
        margin-top: 12px !important;
        font-size: 0.8rem !important;
    }

    .share-icon i {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;

        font-size: 21px !important;
        line-height: 1 !important;
    }

    #nativeShareButton {
        background-color: #ffe44e !important;
        color: #000000 !important;
    }

    #shareWhatsapp {
        background-color: #25d366 !important;
        color: #ffffff !important;
    }

    #shareFacebook {
        background-color: #1877f2 !important;
        color: #ffffff !important;
    }

    #shareX {
        background-color: #000000 !important;
        color: #ffffff !important;
    }

    #shareTelegram {
        background-color: #2aabee !important;
        color: #ffffff !important;
    }

    #copyNewsLink {
        background-color: #111111 !important;
        color: #ffffff !important;
    }

    .copy-link-message {
        display: block !important;
        min-height: 20px !important;
        margin-top: 18px !important;
        font-size: 0.8rem !important;
        color: #666666 !important;
    }
}

@media (max-width: 768px) {
    .container,
    .hero-feature {
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

@media (max-width: 768px) {
    .hero-feature {
        background-position: 48% center !important;
    }
}

.noticia-contenido ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.noticia-contenido ul li {
    margin-bottom: 0.25rem;
}

/* ===== BANNER REVISTA ===== */

.revista-banner{
    width:100%;
    background:#f8d557;
    overflow:hidden;
}

.revista-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:#000;
    min-height:85px;
    font-family: 'ImpactCustom', Impact, sans-serif;
}

.revista-left {
    background: #fff;
    padding: 0 5rem 0 4rem;
    height: 85px;

    display: flex;
    align-items: center;

    font-size: 3.4rem;
    line-height: 1;
    white-space: nowrap;

    position: relative;
    z-index: 2;

    /* Corte diagonal sin líneas */
    clip-path: polygon(
        0 0,
        100% 0,
        calc(100% - 30px) 100%,
        0 100%
    );

    /* Evita cualquier separación entre bloques */
    margin-right: -1px;
}

.revista-left::after {
    display: none;
    content: none;
}

.revista-center{
    flex:1;
    text-align:center;
    font-size:3.3rem;
    line-height:1;
    padding:0 2rem;
    white-space:nowrap;
}

.revista-right{
    padding:0 2.5rem;
    font-size:2.2rem;
    white-space:nowrap;
    transition:.2s;
}

.revista-link:hover .revista-right{
    transform:translateX(6px);
}

@media (max-width: 768px) {

    .revista-banner {
        width: 100%;
        overflow: hidden;
    }

    .revista-link {
        display: grid;
        grid-template-columns: 38% 40% 22%;
        align-items: center;
        width: 100%;
        min-height: 65px;

        text-decoration: none;
        color: #000;
    }

    .revista-left {
        width: 100%;
        height: 65px;
        padding: 0 1.5rem 0 0.6rem;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 1.05rem;
        line-height: 1;
        text-align: center;
        white-space: nowrap;

        background: #fff;

        clip-path: polygon(
            0 0,
            100% 0,
            calc(100% - 16px) 100%,
            0 100%
        );

        margin-right: -1px;
        box-sizing: border-box;
    }

    .revista-left::after {
        display: none;
        content: none;
    }

    .revista-center {
        width: 100%;
        padding: 0 0.3rem 0 0.7rem;

        font-size: 0.95rem;
        line-height: 1.05;
        text-align: center;
        white-space: normal;

        box-sizing: border-box;
    }

    .revista-right {
        width: 100%;
        padding: 0 0.3rem;

        font-size: 0.75rem;
        line-height: 1;
        text-align: center;
        white-space: normal;

        box-sizing: border-box;
    }

    .revista-link:hover .revista-right {
        transform: none;
    }
}

/* =========================================
   ESPACIADO FINAL DE NOTICIAS.HTML
========================================= */

body.noticias-page main {
    flex: none;
    justify-content: flex-start;
    padding-bottom: 0;
}

/* Reduce el espacio alrededor de la paginación */

body.noticias-page .pagination-container {
    margin: 1rem auto 0.75rem;
}

/* Reduce el espacio del botón de regreso */

body.noticias-page .back-link {
    margin: 0.5rem auto 1.5rem;
}

/* Ajustes para móvil */

@media (max-width: 768px) {

    body.noticias-page main {
        padding-bottom: 0;
    }

    body.noticias-page .pagination-container {
        margin: 0.75rem auto 0.5rem;
        gap: 0.6rem;
    }

    body.noticias-page .back-link {
        width: auto;
        margin: 0.5rem auto 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* =========================================
   COMPACTAR FINAL DE NOTICIA — ESCRITORIO
========================================= */

@media (min-width: 769px) {

    /* Reduce el espacio debajo del artículo */
    .noticia-detalle {
        padding-bottom: 0;
    }

    /* Centra y acerca el botón al contenido */
    .noticia-detalle .back-link {
        display: flex;
        width: fit-content;
        margin: 1rem auto 0;
    }

    /* Acerca la sección de compartir al botón */
    .share-news {
        margin: 1.5rem auto 1.5rem;
        padding: 1.5rem 0 2rem;
    }

    .share-news-title {
        margin-bottom: 1.5rem;
    }

    /* Evita espacio reservado cuando no aparece mensaje */
    .copy-link-message:empty {
        display: none;
    }
}

nav ul li a.patreon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.35rem 0.9rem;

    border: 2px solid #ffe44e;
    border-radius: 999px;

    color: #ffe44e;
    font-weight: 700;

    transition: all 0.25s ease;
}

nav ul li a.patreon-link:hover {
    background: #ffe44e;
    color: #000;
}

nav ul li a.patreon-link::after {
    content: none;
}

/* =========================================
   MENÚ MÓVIL EN UNA SOLA FILA
   No modifica la versión de escritorio
========================================= */

@media (max-width: 768px) {

    header,
    body.internal-page header {
        padding: 1rem 0.35rem;
    }

    header nav {
        width: 100%;
    }

    header nav ul {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;

        gap: 0.1rem;
        padding: 0.25rem 0;
        margin: 0;
    }

    header nav ul li {
        flex: 0 0 auto;
    }

    header nav ul li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0.3rem 0.35rem;
        font-size: 0.64rem;
        letter-spacing: 0;
        white-space: nowrap;
    }
}

@media (max-width: 400px) {

    header nav ul {
        gap: 0;
    }

    header nav ul li a {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        font-size: 0.6rem;
    }
}


