﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    width: 100%;
    height:90vh;
}
iframe{
    height:90vh;
}

#radio-player {
    background: #f5f6f8;
    color: #0c2651;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: sans-serif;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo filho */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#conter-player {
    width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}



#radio-player {
    background: #f5f6f8;
    color: #0c2651;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#conter-player {
    width: 100%;
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.left {
    display: flex;
    align-items: center;
    gap: 10px;
}

#playBtn {
    background-color: #ffcd00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #playBtn:hover {
        background: #ca8a04;
    }

.radio-info strong {
    display: block;
    font-size: 16px;
}

.radio-info span {
    font-size: 12px;
    color: #333;
}

.right {
    display: inline-block;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-icon {
    font-size: 16px;
}

#volumeControl {
    width: 100px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row;
}

.live-dot {

    width: 10px;
    height: 10px !important ;
    background:red;
    border-radius: 50%;
    animation: pulse 1s infinite;

}

.live-text {
    
    color: red;
    font-weight: bold;
    font-size: 14px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* MOBILE RESPONSIVO */
@media (max-width: 768px) {
    #conter-player {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .left, .right {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .right {
        text-align: center;
        flex-direction: row;
    }

    .radio-info {
        display: none;
    }

    .volume-icon {
        display:none;
    }

    #playBtn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    #volumeControl {
        width: 80px;
    }
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top: 6px solid #0c2651;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}