/* ========== ESTILOS DO RODAPÉ (LP) ========== */

.lp-footer {
    position: relative;
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 20px 30px;
}

.lp-footer .footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.lp-footer .footer-logo img {
    max-width: 300px;
}

.lp-footer .footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    text-align: center;
    max-width: 520px;
}

.lp-footer .footer-social {
    display: flex;
    gap: 18px;
}

.lp-footer .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.lp-footer .footer-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.lp-footer .footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.lp-footer .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

.lp-footer .footer-copy a {
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    text-underline-offset: 3px;
}
