@charset "UTF-8";

html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}

/* --- VARIABLES Y BASE (FONDO BLANCO EXCLUSIVO) --- */
:root {
    --bg-page: #ffffff;      
    --text-main: #262525;    
    --tenaz-pink: #f287c6;   
    --grey-base: #a5a9aa;    
}

body {
    margin: 0; 
    padding: 0;
    background-color: var(--bg-page);
    
    /* --- PROPIEDADES PARA LA GRÁFICA DE FONDO --- */
    background-image: url('../grafix/bg03.gif'); 
    background-size: 500px auto; 
    background-repeat: repeat;   
    background-position: top left;
    
    color: var(--text-main);
    font-family: "Roboto Mono", monospace;
    line-height: 1.55;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* --- CONTENEDOR MONDONGO RECORDS --- */
.mondongo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 0;
}

/* --- REPRODUCTOR MIXCLOUD DESKTOP --- */
.mixcloud-player-container {
    width: 100%;
    max-width: 800px; /* Incrementado en PC para darle mayor impacto visual */
    margin: 40px auto;
    background: #ffffff; 
    padding: 10px;
    border-radius: 0px;  
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); 
    clip-path: polygon(0.5% 0%, 100% 2%, 99.5% 100%, 0% 98%);
}

.mixcloud-player-container iframe {
    display: block;
    width: 100% !important;
    height: 180px !important; 
}

/* --- PLAYLIST / TRACKLIST DESKTOP --- */
.playlist-container {
    max-width: 800px;
    margin: 60px auto;
    width: 100%;
}

.playlist-title {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.playlist-lista {
    padding-left: 25px;
    margin: 0;
}

.playlist-lista li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.playlist-lista .song {
    font-weight: 700;
}

.playlist-lista .artist {
    font-weight: 100;
}

/* --- TITULAR CON FRANJA ROSA --- */
.section-headline {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700; 
    font-size: 32px; 
    margin: 0 0 60px;
    display: inline-block; 
    position: relative; 
    z-index: 1;
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.section-headline .text-light {
    font-family: 'Roboto Mono', monospace;
    font-weight: 100 !important; 
}

.section-headline::after {
    content: "";
    position: absolute;
    left: 0; 
    bottom: 0;
    height: 100%;
    width: 100vw; 
    background-color: var(--tenaz-pink);
    z-index: -1;
    pointer-events: none;
}

/* --- ESTRUCTURA LANZADERA (COLUMNAS DESKTOP) --- */
.lanzadera-layout {
    display: table;
    width: 100%;
    margin: 40px auto;
    max-width: 1000px;
    border-collapse: separate;
    border-spacing: 30px 0px;
}

.lanzadera-col-left {
    display: table-cell;
    width: 55%;
    vertical-align: top;
}

.lanzadera-col-right {
    display: table-cell;
    width: 45%;
    vertical-align: top;
}

/* Contenedor gráfico asimétrico */
.grafica-container {
    width: 100%;
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0.5% 0%, 100% 2%, 99.5% 100%, 0% 98%);
}

.grafica-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- LISTADO DE PROGRAMAS --- */
.programas-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.programa-link {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    text-align: left;
    width: 100%;
}

/* ESTILO DESKTOP: PROGRAMA DESTACADO */
.programas-lista li.destacado {
    background: #1e1e1e; 
    padding: 22px 30px; 
    margin-bottom: 45px;
    margin-left: 0;   
    max-width: 320px; 
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programas-lista li.destacado:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.programas-lista li.destacado .programa-titulo {
    color: #ffffff; 
    font-size: 20px; 
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}

/* ESTILO DESKTOP: PROGRAMAS ANTERIORES */
.programas-lista li.anterior {
    padding: 0;
    margin-bottom: 35px; 
    max-width: 320px; 
    position: relative;
}

.programas-lista li.anterior .programa-link {
    padding-bottom: 15px; 
    background-image: url('../grafix/lin.jpg'); 
    background-repeat: repeat-x;        
    background-position: bottom left;   
    background-size: auto 2px; 
}

.programas-lista li.anterior .programa-titulo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.programas-lista li.anterior .programa-link:hover .programa-titulo {
    color: var(--tenaz-pink);
}

/* --- BOTÓN "VOLVER AL ESTUDIO" --- */
.retour-container { 
    text-align: center; 
    margin-top: 40px; 
}

.btn-3d-wrapper {
     display: inline-block;
     filter: drop-shadow(5px 5px 12px rgba(0, 0, 0, 0.15));
     transition: filter 0.2s ease;
     margin-top: 10px;
     margin-left: 1px;
}

.btn-irregular {
    display: inline-block;
    padding: 12px 22px;
    background: #000;
    color: #DBDBDB !important; 
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    clip-path: polygon(3% 0%, 100% 5%, 97% 100%, 0% 95%);
}

.btn-irregular:hover {
    color: var(--tenaz-pink) !important; 
    transform: translateY(-2px);
}

/* --- FOOTER ESTILO SELLO --- */
.footer-wrapper {
    width: 100%; 
    margin-bottom: 100px;
    overflow: hidden;
    margin-top: 100px;
}

.footer-banner-block {
    background-color: #FFFFFF; 
    margin: 0 auto; 
    max-width: 100%;
    padding: 130px 40px;
    width: 90%; 
    position: relative;
    left: 9%; 
    transform: rotate(-1.8deg);
    transform-origin: center;
    backface-visibility: hidden;
    display: block;
}

.footer-inner {
    max-width: 700px; 
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    font-family: 'Roboto Mono', monospace;
}

@media (max-width: 1240px) {
    .footer-banner-block {
        margin-left: 40px; 
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 13px;
    color: #262525;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-col strong { 
    color: #262525; 
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #646464;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 2px 6px;
    z-index: 1;
}

.footer-links a:hover { color: var(--tenaz-pink); }
.footer-links a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #262525;
    z-index: -1;
    display: none;
}
.footer-links a:hover::after { display: block; }

.pink-sep { display: none !important; }

.siret-number {
    font-size: 13px;
    color: #262525;
    letter-spacing: 0.05em;
    font-weight: 400;
    text-align: center
}
.siret-label {
    font-size: 10px !important; 
    font-weight: 700;
    margin-right: 4px;
    vertical-align: middle;
}

/* TÍTULO "NUEVO" SOBRE EL DESTACADO (ESCRITORIO) */
.etiqueta-nuevo {
    display: block;
    font-family: "Roboto Mono", monospace;
    font-size: 16px;
    font-weight: 700;
    color: #F187C6; 
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;     
    padding-left: 5px;       
}


/* ==========================================================================
   ESTILO MÓVIL DEFINITIVO (Sincronizado)
   ========================================================================== */
@media (max-width: 768px) {
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .mondongo-container {
        padding: 40px 15px 0 !important; 
    }

    /* FRANJA ROSA Y TITULAR CONTROLADOS */
    .section-headline {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 50px !important;
        letter-spacing: 1px !important;

        /* CONTROLES DEL TITULAR */
        font-size: 24px !important;   /* <--- Tamaño controlado para móvil */
        line-height: 1.2 !important;  /* <--- Interlineado perfecto para las 2 líneas */
    }

    .headline-line-1, 
    .headline-line-2 {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        padding: 2px 0; 
        word-break: keep-all !important;  /* Impide el corte de palabras a la mitad */
        overflow-wrap: normal !important;
    }

    .section-headline::after {
        width: 120% !important; 
        left: -10% !important;   
        height: 100% !important;
        top: 0 !important;
        bottom: 0 !important;
    }

    /* OPTIMIZACIÓN REPRODUCTOR MIXCLOUD EN MÓVIL */
    .mixcloud-player-container {
        max-width: 100% !important; 
        width: 100% !important;
        padding: 6px !important;    
        margin: 30px 0 !important;  
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
    }

    .mixcloud-player-container iframe {
        height: 140px !important; /* <--- Altura ideal: ni gigante ni inaccesible */
    }

    /* CONTROL TOTAL DEL TRACKLIST EN MÓVIL */
    .playlist-title {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        letter-spacing: 2px !important;
    }

    .playlist-lista {
        padding-left: 20px !important; 
        width: 100% !important;
    }

    .playlist-lista li {
        /* CONTROLES DE LA LETRA DE CANCIONES */
        font-size: 14px !important;      /* <--- Tamaño exacto y legible */
        line-height: 1.5 !important;     /* <--- Evita que las líneas se encimen */
        margin-bottom: 14px !important;  /* <--- Espacio óptimo entre canciones */
        white-space: normal !important;
        word-break: break-word !important; 
    }

    /* ESTRUCTURA LANZADERA ADAPTADA */
    .lanzadera-layout,
    .lanzadera-col-left {
        display: block !important;
        width: 100% !important;
        margin: 20px auto !important;
        border-spacing: 0 !important;
    }
    
    .lanzadera-col-right {
        display: none !important;
    }
    
    .etiqueta-nuevo {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-bottom: 15px !important;
    }

    .programas-lista li.destacado {
        max-width: 100% !important; 
        width: 100% !important;
        padding: 24px 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 45px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
        
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .programas-lista li.destacado .programa-titulo {
        font-size: 20px !important; 
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .programas-lista li.anterior {
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 35px !important;
    }
    
    .programas-lista li.anterior .programa-link {
        width: 100% !important;
        padding-bottom: 15px !important;
    }

    /* PIE DE PÁGINA */
    .footer-banner-block {
        width: 100% !important; 
        left: 0 !important;   
        margin-left: 0 !important;
        transform: none !important; 
        padding: 40px 20px !important;
    }
    
    .footer-inner {
        flex-direction: column !important; 
        gap: 20px !important;
        text-align: center !important;
    }
}
/* Alinea el texto y la imagen en la misma línea perfectamente */
.programa-titulo {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Ajusta este valor si quieres más o menos separación con las letras */
}

/* Controla el tamaño de la flecha para que coincida con tu tipografía */
.icono-slash-img {
    height: 2.2rem; /* Sigue proporcionalmente el tamaño del texto */
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease; /* Para que la animación sea suave */
	transform: translateY(12px); /* Un valor negativo (como -2px) SUBE la flecha */

}
.icono-slash-img3 {
    height: 1.7rem; /* Sigue proporcionalmente el tamaño del texto */
    width: auto;
    display: inline-block;
    transition: transform 0.3s ease; /* Para que la animación sea suave */
	transform: translateY(1px); /* Un valor negativo (como -2px) SUBE la flecha */

}

/* CONTENEDOR BLOQUE EXPLICATIVO LANZADERA */
.radio-description-block {
    margin-top: 40px;
    padding-right: 15px;
}

/* Titular Trilingüe (H3) */
.radio-description-block h3 {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4; /* Asegura buen espacio entre las 3 líneas de insultos */
    margin-bottom: 15px;
    color: var(--accent-color, #000); /* Usa tu color de acento, si no hay, cae en negro */
    border-left: 3px solid;
    padding-left: 8px;
}

/* Párrafos de texto (P) */
.radio-description-block p {
    font-weight: 100;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
}

/* Quita el margen inferior al último párrafo para que no rompa el diseño por abajo */
.radio-description-block p:last-child {
    margin-bottom: 0;
}
/* RESPONSIVE PARA DISPOSITIVOS MÓVILES (PANTALLAS PEQUEÑAS) */
@media (max-width: 768px) {
    
    /* Reduce el tamaño del titular trilingüe en móviles */
    .radio-description-block h3 {
        font-size: 0.95rem; /* Baja de 1.1rem a 0.95rem */
        line-height: 1.3;   /* Junta un pelín más las líneas para que ocupe menos espacio */
        margin-bottom: 12px;
    }

    /* Reduce el tamaño de los párrafos en móviles */
    .radio-description-block p {
        font-size: 0.8rem;  /* Baja de 0.9rem a 0.8rem */
        line-height: 1.5;   /* Ajusta el interlineado proporcionalmente */
        margin-bottom: 12px;
    }
}