.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 70px 0 20px;
    font-family: var(--font-sans, 'Inter', sans-serif);
    margin-top: 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-col-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Um detalhe charmoso no hover dos links */
.footer-links a:hover {
    color: var(--auth-primary, #d09c98);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ssl-badge {
    max-width: 130px;
    margin-top: 10px;
}

/* Barra inferior de Copyright e Termos */
.footer-bottom {
    border-top: 1px solid #eaeaea;
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--auth-primary, #d09c98);
}