/* css/footer.css */

.footer {
    background-color: #030303;
    color: #fff;
    padding: 10px 0; /* Reduzindo o padding geral */
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; /* Reduzindo o gap entre os elementos */
    padding: 10px 0; /* Reduzindo a altura do container */
}

.footer-info, .footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-info h2, .footer-links h2, .footer-contact h2 {
    font-size: 18px; /* Reduzindo o tamanho da fonte */
    margin-bottom: 10px; /* Reduzindo o espaço inferior */
    color: #f53939;
}

.footer-info p, .footer-contact p {
    font-size: 14px; /* Reduzindo o tamanho da fonte */
    margin: 5px 0; /* Reduzindo o espaço entre os parágrafos */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 5px; /* Reduzindo o espaço entre os itens do menu */
}

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials {
    margin-top: 10px; /* Reduzindo o espaço superior */
}

.social-icon {
    color: #ffd700;
    font-size: 20px; /* Reduzindo o tamanho da fonte dos ícones */
    margin: 0 5px; /* Reduzindo o espaço entre os ícones */
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #222;
    padding: 5px 0; /* Reduzindo o padding inferior */
    color: #bbb;
    font-size: 12px; /* Reduzindo o tamanho da fonte */
}
