/* ===== FOOTER ===== */

.footer {
    background: #2D2928;
    color: #bfbfbf;
    padding: 60px 8% 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

/* COLUNAS */
.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #7C7C7C;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* LOGO */
.footer-logo {
    max-width: 160px;
    opacity: 0.9;
}

/* MENU */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #474747;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #7C7C7C;
}

/* TEXTO */
.footer-col p{
    font-size: 13px;
    line-height: 1.6;
    color: #7C7C7C;
    
}

.numerofooter{
text-decoration: none !important;
}
/* ===== REDES SOCIAIS ===== */

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    color: #7C7C7C;
}

.social a:hover {
    border-color: #7C7C7C;
    background-color: rgba(255,255,255,0.05);
}

.social svg,
.social i {
    width: 20px;
    height: 20px;
    stroke: #7C7C7C;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
    color: #7C7C7C;
}

.social a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social a svg {
    width: 22px;
    height: 22px;
    stroke: #7C7C7C;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 992px) {
    .footer-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        width: 100%;
    }

    .social {
        margin-top: 15px;
    }

    .footer {
        padding: 50px 6% 30px;
    }
}
