@import url(/assets/theme/theme.css);

.footer {
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
    background-color: #0f0f0f;
}

.container-footer {
    z-index: 2;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__logo {
    flex: 1 1 100%;
    margin-bottom: 2rem;
}

.footer__logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer__logo-description {
    color: var(--gray-400);
    max-width: 350px;
}

.footer__column {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 250px;
}

.footer__column-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    margin-bottom: 0.75rem;
}

.footer__link a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link a:hover {
    color: var(--primary-blue);
}

.footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer__contact-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 4px;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-800);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-link {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .pre-footer-cta__title {
        font-size: 2rem;
    }

    .pre-footer-cta__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .footer__column {
        flex: 1 1 150px;
        min-width: 150px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}