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

.footer {
    padding: 30px 0px;
    position: relative;
    overflow: hidden;
    background-color: #000000e6;
}

.container-footer {
    z-index: 2;
    position: relative;
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 3rem;
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    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: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
}

.footer__logo-text:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
}

.footer__logo-description {
    color: #b3b3b3;
    max-width: 350px;
}

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

.footer__column-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
}

.footer__column-title:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
}

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

.footer__link {
    margin-bottom: 0.75rem;
}

.footer__link a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #b3b3b3;
}

.footer__link a:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
}

.footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #b3b3b3;
}

.footer__contact-item span {
    color: #b3b3b3;
}

.footer__contact-item i {
    color: #0069ff;
    font-size: 1rem;
    margin-top: 4px;
}

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

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background-color: #0069ff;
    transform: translateY(-3px);
}

.footer__social a svg {
    stroke: #ffffff;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: #0069ff;
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: #b3b3b3;
    font-size: 0.875rem;
}

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

.footer__legal-link {
    color: #b3b3b3;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #b3b3b3;
}

.footer__legal-link:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
}

@media (max-width: 768px) {
    .container-footer {
        padding: 40px 1rem;
    }

    .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;
    }
}