/* ===== Site Footer (compartilhado) ===== */
.site-footer {
    position: relative;
    background: #080808;
    color: rgba(255, 255, 255, 0.72);
}

.footer-cta {
    background: linear-gradient(135deg, #F28705 0%, #F29F05 50%, #F2E205 100%);
    padding: 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 0;
}

.footer-cta-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(13, 13, 13, 0.65);
    margin-bottom: 0.35rem;
}

.footer-cta-copy p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0D0D0D;
    line-height: 1.45;
    max-width: 520px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.footer-cta-btn--ghost {
    background: rgba(13, 13, 13, 0.12);
    color: #0D0D0D;
    border: 1px solid rgba(13, 13, 13, 0.18);
}

.footer-cta-btn--ghost:hover {
    background: rgba(13, 13, 13, 0.2);
    color: #0D0D0D;
    transform: translateY(-2px);
}

.footer-cta-btn--primary {
    background: #0D0D0D;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn--primary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.footer-main {
    position: relative;
    padding: 64px 0 48px;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(242, 135, 5, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 5% 100%, rgba(242, 226, 5, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) 0.85fr 0.85fr minmax(260px, 1.15fr);
    gap: 2.75rem 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-logo-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-logo-text small {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
    margin: 0 0 1.5rem;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.footer-social a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.35rem;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
    border-radius: 2px;
}

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

.site-footer .footer-links li {
    margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.site-footer .footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.footer-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(242, 135, 5, 0.12);
    border: 1px solid rgba(242, 135, 5, 0.22);
    color: var(--accent-orange);
    font-size: 0.85rem;
}

.footer-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
    line-height: 1.5;
    min-width: 0;
}

.footer-info-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.42);
}

.footer-info-body a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-info-body a:hover {
    color: var(--primary-yellow);
}

.footer-hours {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.footer-hours p {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.footer-map-link:hover {
    color: #fff;
    gap: 0.65rem;
}

.footer-map-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.footer-map-link:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.35);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.15rem 0;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.25rem;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-cta-actions {
        width: 100%;
    }

    .footer-cta-btn {
        flex: 1;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem 1.75rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col--contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 48px 0 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-cta-copy p {
        font-size: 0.95rem;
    }

    .footer-cta-actions {
        flex-direction: column;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
