/* FOOTER */
.footer-radio {
    background: #FFF;
    color: #ddd;
    box-shadow: rgba(0, 0, 0, 0.35) 0px -5px 15px;
    margin-top: 60px;
}

.footer-title {
    font-size: 22px;
    font-weight: bold;
    color: #2A58C7;
}

.footer-subtitle {
    color: #2A58C7;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-text {
    color: #2b2b2b;
    font-size: 14px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    transition: 0.3s;
}

.footer-list li a:hover {
    color: #7a0000;
    padding-left: 5px;
}

.footer-social a {
    margin-right: 12px;
    font-size: 22px;
    color: #2A58C7;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #7a0000;
    transform: scale(1.2);
}

.footer-bottom {
    background: #2A58C7;
    text-align: center;
    color: white;
    font-size: 13px;
    border-top: 1px solid #222;
}

/* CONTAINER DOS BOTÕES */
.floating-buttons {
    position: fixed;
    bottom: 110px; /* fica acima do player */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

/* ESTILO BASE */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 27px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
    animation: pulse 1.5s infinite;
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25D366;
}

/* APK / PLAYSTORE */
.apk-btn {
    background: #007bff; /* azul padrão */
    /* Se quiser vermelho, use: background: #ff0048; */
}

/* PULSAR */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
    70% { transform: scale(1.15); box-shadow: 0 0 15px 10px rgba(255,255,255,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
}

/* EFEITO AO PASSAR O MOUSE */
.float-btn:hover {
    transform: scale(1.25);
}