@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;500;700&display=swap');

.footer {
    background-color: #f3f9fe;
    font-family: 'Inter', sans-serif;
    color: #152638;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    gap: 48px;
    flex-wrap:wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width:260px;
}

.footer .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 0 0 24px;
}

.footer .title.green {
    color: #2bbaa2;
    font-size: 24px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer li {
    font-size: 16px;
    line-height: 24px;
}

.footer a {
    color: #152638;
    text-decoration: none;
    font-weight: 500;
    transition:
        color .25s ease,
        padding-left .25s ease;
}

.footer a:hover {
    color: #2bbaa2;
    padding-left:4px;
}

/* Fale Conosco */
.contact-list li {
    position: relative;
    padding-left: 20px;
}

.contact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; 
    width: 8px;
    height: 8px;
    background-color: #2bbaa2;
    border-radius: 50%;
}

.contact-list a {
    font-weight: 400;
}

/* Links Rápidos */
.link-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-list svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-bottom {
    background-color: #152638;
    color: #fff;
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }
}
@media (max-width: 1024px){

    .footer-top{

        gap:32px;
        padding:40px 32px;
        flex-wrap:wrap;
    }

    .footer-col{

        min-width:280px;
        flex:1 1 calc(50% - 20px);
    }

    .footer .title{

        font-size:18px;
    }

    .footer .title.green{

        font-size:22px;
    }

    .footer li{

        font-size:15px;
        line-height:22px;
    }

}

@media (max-width:768px){

    .footer-top{

        flex-direction:column;
        gap:36px;

        padding:40px 24px;
    }

    .footer-col{

        width:100%;
    }

    .footer .title{

        font-size:20px;
        margin-bottom:18px;
    }

    .footer .title.green{

        font-size:22px;
    }

    .footer ul{

        gap:10px;
    }

    .footer li{

        font-size:15px;
        line-height:24px;
    }

    .link-list li{

        gap:10px;
    }

    .link-list svg{

        width:18px;
        height:18px;
    }

    .footer-bottom{

        padding:18px;
        font-size:13px;
    }

}

@media (max-width:480px){

    .footer-top{

        padding:32px 20px;
        gap:30px;
    }

    .footer .title{

        font-size:18px;
    }

    .footer .title.green{

        font-size:20px;
    }

    .footer li{

        font-size:14px;
        line-height:22px;
    }

    .contact-list li{

        padding-left:16px;
    }

    .contact-list li::before{

        width:7px;
        height:7px;

        top:8px;
    }

    .footer-bottom{

        font-size:12px;
        padding:16px;
    }

}
