.footer {
    background: rgba(10, 42, 67, 0.55);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 24px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    filter: drop-shadow(0 0 10px rgba(28,199,197,0.4));
    margin-bottom: 12px;
}

/* DESCRIÇÃO */
.footer-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* TÍTULOS */
.footer-title {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
}

/* LINHA NEON */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

/* LINKS */
.footer-link {
    display: block;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* TEXTO */
.footer-text {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 6px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--muted);
    font-size: 14px;
}
