/* footer.css */

/* =========================================
   RODAPÉ — SITE-FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-container);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.footer-inner {
    max-width: 1220px;
    width: 95%;
    margin: 0 auto;
    padding: 44px 0 32px;
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Coluna genérica */
.footer-col {
    flex: 1;
    min-width: 0;
}

/* Coluna de identidade — um pouco mais larga */
.footer-col-brand {
    flex: 1.6;
}

/* Logo / fallback texto */
.footer-logo-wrap {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-wrap img {
    height: 38px;
    width: auto;
    display: block;
}
.footer-logo-text {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.footer-tagline {
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 6px 0;
    font-size: 0.95rem;
}
.footer-desc {
    color: var(--text-main);
    opacity: 0.65;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Títulos das colunas */
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-main);
    opacity: 0.45;
    margin: 0 0 16px 0;
}

/* Lista de links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links li a {
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.75;
    font-size: 0.9rem;
    transition: color 0.18s, opacity 0.18s;
}
.footer-links li a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* E-mail — texto simples, não link */
.footer-email {
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0.55;
    font-style: italic;
    margin-top: 2px;
}

/* =========================================
   BARRA INFERIOR
   ========================================= */
.footer-bottom-wrap {
    border-top: 1px solid var(--border-color);
}
.footer-bottom {
    max-width: 1220px;
    width: 95%;
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--text-main);
    opacity: 0.5;
}
.footer-disclaimer {
    font-size: 0.77rem;
    color: var(--text-main);
    opacity: 0.45;
    font-style: italic;
    text-align: right;
    max-width: 520px;
}

/* =========================================
   STRIP DE FEEDBACK
   ========================================= */
.feedback-strip {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    text-align: center;
}
.feedback-strip-text {
    font-size: 0.88rem;
    color: var(--text-main);
    opacity: 0.65;
    padding-bottom: 10px;
    display: block;
}
.feedback-strip-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
    white-space: nowrap;
}
.feedback-strip-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* =========================================
   RESPONSIVO — coluna única abaixo de 768px
   ========================================= */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 30px;
        padding: 32px 0 24px;
    }
    .footer-col-brand { flex: none; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-disclaimer {
        text-align: left;
        max-width: 100%;
    }
}
