/* Estilos para o Rodapé */

.footer {
    background-color: #333333;
    color: #ffffff; /* Cor de fundo/texto */
    text-align: center;
    padding: 10px 0;
    padding-top: 100px;
    padding-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* EXTRA BOLD */
    font-size: 13px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    margin-right: 10px;
    margin-left: 15px;
    overflow: hidden;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffc60b;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.4;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section .contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-section .contact img {
    width: 20px;
    margin-right: 10px;
}

.footer-section .socials a {
    display: inline-block;
    margin-right: 10px;
}

.footer-section .socials img {
    width: 30px;
    height: 30px;
}

.footer-section.newsletter form {
    display: flex;
    flex-direction: column;
}

.footer-section.newsletter input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 5px;
}

.footer-section.newsletter button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ffc60b;
    color: #222;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-section.newsletter button:hover {
    background-color: #eb5200;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 500px;
        text-align: center;
    }

    .footer-section.newsletter form {
        align-items: center;
    }

    .footer-section.newsletter input[type="email"],
    .footer-section.newsletter button {
        width: 100%;
    }
}
