{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #5f7fa6; /* azul menos saturado */
    color: #ffffff;
}

/* Logo topo */
.topo {
    text-align: center;
    padding: 25px 10px;
}

.topo img {
    max-width: 280px;
    width: 90%;
}

/* Grid dos players */
.players {
    max-width: 1000px;
    margin: auto;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Caixa do player */
.player-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 10px;
    text-align: center;
}

/* 🔝 Logo do player (sempre em cima) */
.logo-radio {
    display: block;
    max-width: 150px;
    width: 70%;
    margin: 0 auto 12px auto;
}

/* Player */
audio {
    width: 100%;
    max-width: 250px;
}

/* Rodapé */
.rodape {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #e6e6e6;
}

/* 📱 Celular */
@media (max-width: 600px) {
    .players {
        grid-template-columns: 1fr;
    }
}












.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* Celular */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
