body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.glass-footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #b5b5b5;
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-group h4 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.link-group a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #a0a0a0;
    font-size: 14px;
    transition: 0.3s ease;
}

.link-group a:hover {
    color: white;
}

.footer-cta {
    display: flex;
    align-items: center;
}

.btn-main {
    background: #1e40ff;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-main:hover {
    background: #1633cc;
}

.footer-divider {
    margin: 50px 0 30px;
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    color: #7a7a7a;
}

.social-container {
    display: flex;
    gap: 20px;
}

.social-link {
    transition: 0.3s ease;
}

.social-link:hover {
    opacity: 0.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        gap: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

}