/**
 * Módulo: Radio - Template Montecristo
 * 
 * Rediseño del módulo de radio para Montecristo
 * Mantiene coherencia visual con el resto del template
 * 
 * @version 1.0.0
 * @date 2026-07-21
 */

/* ========================================
   RADIO PORTADA - MONTECRISTO
   ======================================== */

#radio-portada .radio-widget {
    background: linear-gradient(135deg, var(--primario) 0%, var(--secundario) 100%);
    border-radius: 2.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

#radio-portada .radio-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

#radio-portada .radio-container {
    display: flex;
    align-items: center;
    z-index: 1;
}

#radio-portada .img-radio {
    width: 20rem;
    height: auto;
}

#radio-portada .btn-radio-vivo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--blanco);
    color: var(--primario);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#radio-portada .btn-radio-vivo:hover {
    background-color: var(--terciario);
    color: var(--blanco);
    transform: translateY(-0.3rem);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
}

#radio-portada .btn-radio-vivo i {
    font-size: 1.8rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 991px) {
    #radio-portada .radio-widget {
        padding: 2rem 2.5rem;
    }
    
    #radio-portada .img-radio {
        width: 12rem;
    }
    
    #radio-portada .btn-radio-vivo {
        font-size: 1.4rem;
        padding: 1rem 2rem;
    }
}

/* ========================================
   RESPONSIVE - MÓVIL
   ======================================== */

@media (max-width: 576px) {
    #radio-portada {
        display: block !important;
    }
    
    #radio-portada .radio-widget {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    #radio-portada .radio-container {
        display: flex !important;
        justify-content: center;
    }
    
    #radio-portada .img-radio {
        display: block !important;
        width: 15rem;
    }
    
    #radio-portada .btn-radio-vivo {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        font-size: 1.4rem;
        padding: 1rem 2rem;
    }
}

/* ========================================
   RADIO - HEADER
   ======================================== */

.img-radio {
  width: 15rem;
}

@media (min-width: 768px) {
  .img-radio {
    width: 15rem;
    /* En pantallas md (tablet para arriba) */
  }
}

/*Radio en vivo*/
.radio-container {
  display: flex;
  align-items: center;
}

.radio-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 576px) {
  .radio-container .img-radio {
    max-height: 5rem;
    width: auto;
  }

  .radio-container .icono {
    margin-right: 4px;
  }
}
