/*
======================================================
 AJUSTE PARA REMOVER O FOCO PRETO DA BARRA DE NAVEGAÇÃO
======================================================
*/
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:active {
    color: white;    
    outline: none;     
    box-shadow: none;  
}

/* Ajustes para Controles do Player com Classes */
#player-lateral .controle-volume-slider {
    -webkit-appearance: none; appearance: none;
    width: 80px; height: 5px; background: #ccc;
    border-radius: 5px; outline: none; transition: opacity 0.2s;
}
#player-lateral .controle-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 15px; height: 15px; border-radius: 50%;
    background: #3408e4; cursor: pointer;
}
#player-lateral .controle-volume-slider::-moz-range-thumb {
    width: 15px; height: 15px; border-radius: 50%;
    background: #3e04ff; cursor: pointer; border: none;
}
#player-lateral .controle-volume-icone {
    cursor: pointer; font-size: 20px; color: #333;
    width: 25px; text-align: center;
}

/* BARRA DE NAVEGAÇÃO */
nav.navbar-transparente {
    padding: 8px 0px;
    background: rgba(0, 0, 0, 0.61);
}
.navbar-light .navbar-nav .nav-link { color: white; }
.navbar-light .navbar-nav .nav-link:hover { color: #9bf0e1; }
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(255, 255, 255,.1);
}

/* CONTROLE DE VISIBILIDADE DOS PLAYERS */
#player-lateral {
    display: none;
}
#player-inferior-spotify {
    display: flex;
}

@media (min-width: 769px) {
    #player-lateral {
        display: flex;
    }
}
@media (max-width: 768px) {
    #player-inferior-spotify {
        padding: 10px 15px;
    }
    #player-inferior-spotify .volume-container {
        display: none;
    }
}

/* PLAYER INFERIOR ESTILO SPOTIFY*/
#player-inferior-spotify {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background-color: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 30px;
    z-index: 1050;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
#player-inferior-spotify.player-visivel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#player-inferior-spotify .info-musica { color: white; }
#player-inferior-spotify .info-musica strong { font-size: 1rem; }
#player-inferior-spotify .info-musica span { font-size: 0.8rem; color: #ccc; }
#player-inferior-spotify .controles-principais { text-align: center; }
#player-inferior-spotify .controle-play-pause {
    background-color: white; color: black;
    border: none; border-radius: 50%;
    width: 45px; height: 45px;
    font-size: 18px;
    transition: transform 0.2s ease;
}
#player-inferior-spotify .controle-play-pause:hover {
    transform: scale(1.1);
    background-color: #f0f0f0;
}
#player-inferior-spotify .controle-play-pause span { display: none; }
#player-inferior-spotify .volume-container { justify-content: flex-end; }


/* CONTROLES DE VOLUME*/
.volume-container { display: flex; align-items: center; gap: 10px; }
.controle-volume-icone { cursor: pointer; font-size: 20px; color: #fff; width: 25px; text-align: center; }
#player-lateral .controle-volume-icone { color: #333; }
.controle-volume-slider {
    -webkit-appearance: none; appearance: none;
    width: 80px; height: 5px; background: #555;
    border-radius: 5px; outline: none; transition: opacity 0.2s;
}
.controle-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 15px; height: 15px; border-radius: 50%;
    background: white; cursor: pointer;
}
.controle-volume-slider::-moz-range-thumb {
    width: 15px; height: 15px; border-radius: 50%;
    background: white; cursor: pointer; border: none;
}

/*
=================================
 ESTILOS GERAIS DOS PLAYERS
=================================
*/

/* PLAYER LATERAL (Desktop) */
#player-lateral {
    position: fixed; top: 15px; right: 20px; z-index: 1040;
    background-color: rgba(245, 245, 245, 0.9);
    border-radius: 25px; padding: 8px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    align-items: center; gap: 15px;
}
#player-lateral .player-logo { height: 30px; border-radius: 50%; }
#player-lateral .controle-play-pause {
    background-color: #2c09b9; color: white; border: none;
    border-radius: 30px; padding: 10px 20px; font-size: 14px;
    font-weight: bold; display: flex; align-items: center;
    transition: background-color 0.2s ease;
}
#player-lateral .controle-play-pause:hover { background-color: #0f78e8; }
#player-lateral .controle-play-pause i { margin-right: 8px; }

/*
=================================
AJUSTE DE POSIÇÃO DO WHATSAPP FLUTUANTE 
=================================
*/
.whatsapp-float {
    bottom: 20px;
    transition: bottom 0.4s ease;
}

body.player-inferior-ativo .whatsapp-float {
    bottom: 95px; 
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; }
.whatsapp-float img { height: 60px; }
.imagem-redonda { border-radius: 50%; }

/*
======================================================
 TORNA A NAVBAR ESTÁTICA APENAS NA PÁGINA DE CONTATO
======================================================
*/
.pagina-contato .navbar.fixed-top {
    position: static;
    background-color: black;
}

.pagina-contato .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}