/* ======================================================= */
/* --- RODAPÉ (DARK THEME) --- */
/* ======================================================= */

.footer {
    background-color: var(--color-marquee); 
    color: white;
    padding: 40px 0 20px;
    border-top: none; 
}
.footer .logo-img {
    filter: none; 
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr); 
    gap: 40px;
    padding-bottom: 20px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-weight: 800; 
    font-size: 1em;
    color: var(--color-accent); 
    text-transform: uppercase;
}

.footer-column p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}
.footer-column ul {
    list-style: none;
    padding-left: 0;
}
.footer-column ul a {
    text-decoration: none;
    color: white;
    font-size: 0.9em;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-column ul a:hover {
    opacity: 1;
    color: var(--color-accent); 
}

.footer-column .social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5em; 
    margin-top: 10px;
}
.footer-column .social-icons a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-column .social-icons a:hover {
    opacity: 1;
    color: var(--color-accent); 
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
.payment-icon {
    height: 25px;
    width: auto;
    border-radius: 4px;
    background-color: white; 
    padding: 2px;
}

.footer .copyright {
    text-align: center;
    font-size: 0.8em;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    margin-top: 20px;
    line-height: 1.6;
}
.footer .copyright p {
    margin: 5px 0; 
}
