/* --- CUSTOM FOOTER --- */
.site-footer { display: none !important; }

.reis-footer { background: #fff; border-top: 1px solid #eee; padding: 60px var(--page-gutter) 0; }

.footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.8fr 1.4fr 1fr;
    gap: 60px; padding-bottom: 50px;
    align-items: start;
}

/* LEFT */
.footer-logo { max-height: 48px; width: auto; display: block; margin-bottom: 28px; }
.footer-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.footer-contact-label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.footer-contact-value { font-size: 14px; color: var(--text-dark); font-weight: 500; text-decoration: none; display: block; }
.footer-contact-value:hover { color: #398fc3; }

/* CENTER */
.footer-nav { display: flex; gap: 80px; justify-content: flex-end; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-nav ul li a { font-size: 14px; color: var(--text-dark); font-weight: 500; text-decoration: none; }
.footer-nav ul li a:hover { color: #398fc3; }

/* RIGHT */
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--reis-pink); color: #fff;
    border-radius: 999px; padding: 13px 28px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: background 0.2s;
}
.footer-cta-btn:hover { background: var(--reis-pink-hover); color: #fff; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); text-decoration: none;
    transition: all 0.2s;
}
.footer-socials a:hover { border-color: #555; color: #111; }

/* Payment icons */
.footer-payment { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-payment-label { font-size: 11px; color: var(--text-muted); }
.footer-payment-icons { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.pay-icon { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #e5e5e5; border-radius: 6px; padding: 4px 8px; height: 32px; }
.pay-icon img { height: 18px; width: auto; display: block; }
.pay-icon img.pay-lg { height: 24px; }

/* BOTTOM BAR */
.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    border-top: 1px solid #eee; padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: #999;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: #999; text-decoration: none; }
.footer-legal a:hover { color: var(--text-dark); }

@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-right { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; }
    .footer-nav { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .reis-footer { padding: 48px 24px 0; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 0;
    }

    /* Logo — centered */
    .footer-brand {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 32px;
        border-bottom: 1px solid #eee;
    }
    .footer-logo { margin-bottom: 20px; max-height: 44px; }

    /* Contact — 2-col grid stays but centered */
    .footer-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px 32px;
        width: 100%;
        max-width: 320px;
        text-align: left;
    }

    /* Nav — 2-col grid, centered */
    .footer-nav {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        justify-content: center;
        padding: 32px 0;
        border-bottom: 1px solid #eee;
    }
    .footer-nav ul { gap: 18px; }
    .footer-nav ul li a { font-size: 15px; }

    /* Socials + payment — centered */
    .footer-right {
        order: 3;
        grid-column: span 1;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 0 40px;
        border-bottom: 1px solid #eee;
    }
    .footer-socials { gap: 12px; }
    .footer-socials a { width: 44px; height: 44px; }

    .footer-payment { align-items: center; }
    .footer-payment-label { font-size: 12px; text-align: center; }
    .footer-payment-icons { justify-content: center; gap: 8px; }
    .pay-icon { padding: 6px 10px; height: 36px; }
    .pay-icon img { height: 20px; }
    .pay-icon img.pay-lg { height: 22px; }

    /* Bottom bar */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
    }
}
