/* ============================================================
   AJE RADIO LIVE BAR - VERSIÓN STICKY (FIJA)
   ============================================================ */

/* 1. AJUSTE DE CUERPO:
   Como la barra es fija, empujamos todo el sitio hacia abajo 
   para que no tape tu menú o logo. 
*/
body {
    padding-top: 50px !important; /* Ajusta este número si la barra queda muy gruesa o fina */
}

.aje-radio-bar {
    background-color: rgb(171, 71, 188); /* Tu Violeta */
    padding: 10px 0;
    width: 100%;
    
    /* Lógica Sticky */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999; /* Por encima de todo, incluso del menú de Elementor */
    
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.aje-radio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

/* Estado y Ondas Animadas */
.aje-radio-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.aje-equalizer {
    display: flex;
    align-items: flex-end;
    height: 18px;
    gap: 3px;
}

.bar {
    width: 3px;
    background-color: rgb(255, 193, 7); /* Tu Amarillo */
    border-radius: 2px;
    animation: aje-wave 1s ease-in-out infinite;
}

.bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes aje-wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.aje-live-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Botón Escuchar (Diseño Premium) */
.aje-btn-radio {
    background-color: rgb(255, 193, 7);
    color: #000000 !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.aje-btn-radio:hover {
    transform: scale(1.08);
    background-color: #ffffff;
}

/* Responsive para Móviles */
@media (max-width: 600px) {
    /* Ajustamos el padding del cuerpo para móvil si la barra cambia de alto */
    body { padding-top: 45px !important; }

    .aje-live-text {
        display: none; /* Limpieza visual en móvil */
    }
    .aje-radio-container {
        padding: 0 15px;
    }
    .aje-btn-radio {
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}