.section-radio {
    width: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
}
.section-radio-inner {
    width: 100%;
    display: flex;
    align-items: stretch;
}


/* RADIO MÁS PROTAGONISTA */

.radio-box {
    flex: 1;   /* 🔥 ocupa todo el espacio disponible */
}

.chat-box {
    width: 350px;   /* 🔥 tamaño fijo del chat */
}


/* IFRAME */

.radio-box iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.chat-box iframe {
    width: 100%;
    height: 449px;   /* 🔥 10px menos */
    border: 0;
}

@media (max-width: 900px) {
    .section-radio-inner {
        flex-direction: column;
    }

    .chat-box {
        width: 100%;
    }
}
