.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 9999;
}

/* Botão */
.float-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

/* Ícone */
.float-btn i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Texto */
.label {
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

/* Hover */
.float-btn:hover .label {
    opacity: 1;
    transform: translateX(0);
}

.float-btn:hover i {
    transform: scale(1.1);
}

/* Cores */
.whatsapp i {
    background: #25D366;
}

.instagram i {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.youtube i {
    background: #ff0000;
}

/* FUNDO TOTAL DO RODAPÉ */
#g-footer {
    background: linear-gradient(135deg, #ff6a00, #ff8c00) !important;
    color: #fff;
    width: 100%;
}

/* REMOVE LIMITAÇÃO DE LARGURA */
#g-footer .g-container {
    max-width: 100% !important;
    width: 100% !important;
}

/* GARANTE QUE TODAS AS ÁREAS FIQUEM LARANJA */
#g-footer .g-grid,
#g-footer .g-block,
#g-footer .g-content {
    background: transparent !important;
}

/* TEXTOS */
#g-footer h1,
#g-footer h2,
#g-footer h3,
#g-footer h4,
#g-footer p,
#g-footer a {
    color: #ffffff !important;
}

/* HOVER */
#g-footer a:hover {
    color: #000000 !important;
}