#gonews-custom-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0 0; /* Removido padding bottom para o copyright ir até o final */
    border-top: 1px solid #e1e1e1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

#gonews-custom-footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: space-between;
    gap: 40px;
}

#gonews-custom-footer .footer-column {
    flex: 1;
    min-width: 250px;
}

#gonews-custom-footer h3 {
    color: #cc0000; /* Vermelho similar ao header */
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#gonews-custom-footer p {
    margin-bottom: 15px;
    color: #555;
}

#gonews-custom-footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

#gonews-custom-footer a:hover {
    color: #cc0000;
    text-decoration: underline;
}

#gonews-custom-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#gonews-custom-footer ul li {
    margin-bottom: 10px;
}

/* Coluna Logo */
.logo-column img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #cc0000;
    color: #fff !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.social-links a:hover {
    background-color: #a00000;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0; /* Padding top e bottom */
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
}

/* Responsividade */
@media (max-width: 768px) {
    #gonews-custom-footer .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    #gonews-custom-footer .footer-column {
        width: 100%;
    }
}
