/* Estilos Radio Online FET */
.radio-hero {
    position: relative;
    padding: 3rem 1rem 0rem;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.radio-hero {
    position: relative;
    z-index: 2;
}

.radio-hero__title {
    line-height: 1.05;
    margin-bottom: 1rem;
}

.radio-hero__title .accent {
    color: var(--color-primary-600);
}

.radio-hero__lead {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.radio-hero__cta {
    background: var(--color-primary-600);
    border: none;
    color: #fff;
    padding: .9rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: .85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: background .25s, transform .25s;
}

.radio-hero__cta:hover {
    background: var(--color-primary-900);
    transform: translateY(-2px);
}

.radio-hero__cta:active {
    transform: translateY(0);
}

.radio-hero__cta i {
    font-size: 1.25rem;
}

/* Reproductor flotante */
.radio-floating-player {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    width: 440px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    padding: 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: inherit;
    border: 1px solid rgba(0, 0, 0, .06);
}

/* Se eliminó el botón de cierre; estilos conservados por compatibilidad si se reintroduce */

/* Header tipo "Listen Now" */
.rfp-head {
    margin-top: .25rem;
}

.rfp-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: .2px;
}

.rfp-headphones {
    color: var(--color-primary-600);
    font-size: 1.6rem;
}

/* Barra inferior grande */
.rfp-bar {
    width: 100%;
}

.rfp-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f3eee8;
    border-radius: 24px;
    padding: .8rem .9rem;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
}

.radio-btn {
    background: var(--color-primary-600);
    border: none;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
    transition: transform .2s ease, background .2s ease;
}

.radio-btn:hover {
    transform: translateY(-1px);
}

.radio-btn:active {
    transform: translateY(0);
}

.rfp-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.rfp-time {
    font-weight: 700;
    font-size: 1.35rem;
    color: #222;
}

.rfp-progress.radio-progress-wrap {
    height: 10px;
    background: #c9c7c4a0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.radio-progress {
    position: absolute;
    inset: 0;
    background: var(--color-primary-400);
    width: 0%;
    transition: width .4s linear;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .radio-floating-player {
        width: calc(100% - 1.5rem);
        right: .75rem;
        bottom: .75rem;
        border-radius: 20px;
    }

    .radio-hero {
        height: 70vh;
        padding: 4rem 1rem 0rem;
        background-position: center bottom;
        background-size: 100% auto;
    }

    .radio-hero__title {
        font-size: 1.25rem;
    }
}

/* ===================== */
/* Features section      */
/* ===================== */
.radio-features {
    padding: 4rem 0;
}

.radio-features__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}


.rf-title {
    line-height: 1.05;
}

/* Zoom en imagen */
.rf-person[data-zoomable] {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.rf-person[data-zoomable]:hover {
    transform: scale(1.05);
}

.image-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn 0.2s ease;
}

.image-zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.rf-lead {
    color: #555;
    max-width: 58ch;
    margin: 0 0 1rem;
}

.rf-col--art {
    position: relative;
}

.rf-art {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-person {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .18));
}

@media (max-width: 992px) {
    .radio-features__grid {
        grid-template-columns: 1fr;
    }



    .rf-col--art {
        order: -1;
    }

    .rf-art {
        min-height: 340px;
    }
}


/* ===================== */
/* Three feature cards   */
/* ===================== */
.radio-benefits {
    padding: 2rem 0 4rem;
}

.rb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rb-card2 {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
}

.rb-icon {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: var(--color-primary-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: .75rem;
}

.rb-title {
    margin: .25rem 0 .4rem;
}

.rb-text {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .rb-grid {
        grid-template-columns: 1fr;
    }

    .rb-icon {
        width: 74px;
        height: 74px;
    }
}

/* ===================== */
/* CTA share (copiar URL)*/
/* ===================== */
.radio-share {
    padding: 2rem 0 2.5rem;
}

.rs-wrapper {
    background:var(--color-primary-900);
    color: #fff;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    overflow: hidden;
}

.rs-content {
    padding: 2rem 1.5rem 2rem 2rem;
}

.rs-title {
    color: white;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.rs-lead {
    opacity: .9;
    margin-bottom: 1.1rem;
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--color-primary-600);
    color: #fff;
    border: none;
    padding: .9rem 1.4rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.rs-btn:hover {
    background: var(--color-primary-400);
}

.rs-feedback {
    margin-top: .75rem;
    font-weight: 600;
}

.rs-media {
    position: relative;
}

.rs-media-img {
    position: relative;
    aspect-ratio: 21/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-media-img img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    object-fit: contain;
}

@media (max-width: 992px) {
    .rs-wrapper {
        grid-template-columns: 1fr;
    }

    .rs-content {
        padding: 1.5rem 1rem;
    }
}