/* Estilos gerais do footer */

footer {
    background-color: #1e1e1e;
    color: #f4f4f4;
    font-family: Lora !important;
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 220px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color: #23ab29;
    font-size: 20px;
}

.footer-section a,
.footer-section a {
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p strong a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact {
    background-color: #333;
    padding: 30px 0;
}

.footer-bottom {
    background-color: #222;
    color: #888;
    padding: 20px;
    text-align: center;
}


/* Efeito de Hover */

.footer-section ul li a:hover {
    color: #178d1b !important;
    text-decoration: underline;
}

.footer-section p strong a:hover {
    color: #178d1b !important;
    text-decoration: underline;
}

#btn-suporte {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 17px;
    font-family: 'Lora';
    cursor: pointer;
}

#btn-suporte:hover {
    color: #178d1b !important;
    text-decoration: underline;
}