.new-footer {
    background-color: #f9f9f9;
    padding: 60px 0 20px 0;
    color: #333;
    font-size: 12px;
    margin-top: 80px;
    border-top: 1px solid #e6e6e6;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.brand-col {
    max-width: 180px;
}

.footer-logo img {
    width: 120px;
    display: block;
}

.new-footer h4 {
    font-size: 12px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 8px;
}

.footer-links-list a {
    text-decoration: none;
    color: #555;
}

.footer-links-list a:hover {
    color: var(--primary);
}

.payment-imgs img {
    width: 200px;
    margin-top: 10px;
}

.copyright-bar {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #888;
}

a[href="mailto:suporte@arenastore.com.br"] {
    color: #D30000 !important;
    text-decoration: underline !important;
}


.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    z-index: 1000; 
}

.float-btn {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center; 
    align-items: center;    
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    color: #fff;
}

.scroll-top {
    background-color: #D32F2F;

}

.whatsapp-float {
    background-color: #25d366;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}