/* --- Footer Styles --- */

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-footer h4 {
    font-family: 'Milky Semibold', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Top Footer --- */
.footer-top {
    background-color: var(--primary-blue);
    padding: 3rem 0;
    color: var(--white);
    text-align: center;
}

.footer-top h4 {
    color: var(--white);
}

.footer-action-block {
    margin-bottom: 2rem;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-blue);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

.btn-pill:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* --- Main Footer --- */
.footer-main {
    background-color: var(--white);
    padding: 3rem 0;
    color: var(--black);
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.footer-logos img {
    width: auto;
    height: auto;
    /* Imagens em tamanho original */
}

.logo-mtur {
    height: 52px !important;
    /* Mobile */
    width: auto;
}

.logo-embratur {
    height: 20px !important;
    /* Mobile */
    width: auto;
}

.logo-marca-brasil {
    height: 73px !important;
    /* Mobile */
    width: auto;
}

.logo-consulado {
    height: 67px !important;
    /* Mobile */
    width: auto;
}




.footer-divider {
    border: 0;
    height: 1px;
    background-color: #ffffff;
    margin: 2rem 0;
}

.footer-info-row h4 {
    color: var(--primary-blue);
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    font-family: 'Libre Franklin', sans-serif;
    color: var(--primary-blue);
    font-size: 16px;
    line-height: 1.4;
}



/* Redes Sociais */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-icons a {
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    border-radius: 50%;
}

.social-icons a svg {
    width: 23px;
    height: auto;
}



/* --- Desktop --- */
@media (min-width: 768px) {
    .footer-top .footer-container {
        display: flex;
        justify-content: center;
        gap: 4rem;
    }

    .footer-action-block {
        margin-bottom: 0;
    }

    .footer-info-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-nav {
        text-align: left;
    }

    .footer-social {
        text-align: right;
    }

    .social-icons {
        justify-content: flex-end;
    }

    .social-icons a svg {
        width: 60px;
        height: auto;
    }

    .logo-mtur {
        height: 92.8px !important;
        /* PC */
    }

    .logo-embratur {
        height: 32px !important;
        /* PC */
    }

    .logo-marca-brasil {
        height: 112px !important;
        /* PC */
    }

    .logo-consulado {
        height: 104px !important;
        /* PC */
    }
}

/* --- Mobile --- */
@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-logos {
        justify-content: center;
    }
}