/* FOOTER */
.af-footer {
    background: #1a1a1a;
    padding: 52px 40px 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
}

.af-footer-inner {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 60px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid #333;
}

.af-footer-logo img {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.af-footer-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
}

.af-footer-social {
    display: flex;
    gap: 10px;
}

.af-footer-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.af-footer-social-btn:hover {
    color: #12a19a;
    border-color: #12a19a;
}

.af-footer-social-btn svg {
    width: 15px;
    height: 15px;
}

.af-footer-col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.af-footer-col-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #12a19a;
    flex-shrink: 0;
}

.af-footer-col-title-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    white-space: nowrap;
}

.af-footer-col-line {
    flex: 1;
    height: 1px;
    background: #333;
}

.af-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.af-footer-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.15s ease;
}

.af-footer-link:hover {
    color: #12a19a;
}

.af-footer-bottom {
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.af-footer-copyright {
    font-size: 12px;
    color: #555;
}

/* Esconder footer do Divi */
#main-footer {
    display: none !important;
}

@media (max-width: 768px) {
    .af-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}