﻿/* ============================================================
   FOOTER.CSS — BALAM dark footer style
   ============================================================ */

/* ── Newsletter section ── */
.footer-newsletter {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 52px 24px 40px;
}

.footer-newsletter__tagline {
    display: none; /* hidden by default, same as original */
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 8px;
}

.footer-newsletter__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: 0.3px;
}

/* Input + button row */
.footer-newsletter__form {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #555;
    margin: 0 auto 32px;
    max-width: 420px;
    width: 100%;
}

.footer-newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-family: Montserrat, sans-serif;
    padding: 8px 12px 8px 0;
    letter-spacing: 0.5px;
}

    .footer-newsletter__input::placeholder {
        color: #777;
        font-size: 13px;
    }

.footer-newsletter__btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 6px 4px;
    display: flex;
    align-items: center;
    transition: opacity 200ms;
}

    .footer-newsletter__btn:hover {
        opacity: 0.7;
    }

/* Social icons row */
.footer-newsletter__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}

    .footer-newsletter__social a {
        color: #fff;
        font-size: 22px;
        line-height: 1;
        text-decoration: none;
        opacity: 0.85;
        transition: opacity 200ms;
        display: flex;
        align-items: center;
    }

        .footer-newsletter__social a:hover {
            opacity: 1;
        }

    .footer-newsletter__social img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }

/* ── Main footer ── */
.footer-main {
    background-color: #111;
    border-top: 1px solid #2a2a2a;
    padding: 40px 60px 0;
    color: #fff;
}

/* Logo + links row */
.footer-main__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto 40px;
    gap: 40px;
}

/* Logo */
.footer-main__logo {
    flex-shrink: 0;
}

.logo-footer {
    display: block;
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1); /* makes dark logo white */
}

.logo-link-copy.footer {
    opacity: 1 !important;
}

    .logo-link-copy.footer:hover {
        opacity: 0.75 !important;
    }

/* Footer links (MenuBottomXX renders these) */
.footer-main__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
    /* Style whatever MenuBottomXX renders */
    .footer-main__links a,
    .footer-main__links .footer-link {
        display: block;
        color: #ccc;
        font-size: 13px;
        font-weight: 400;
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: color 200ms;
        text-align: right;
    }

        .footer-main__links a:hover,
        .footer-main__links .footer-link:hover {
            color: #fff;
        }

/* Payment icons row */
.footer-main__payments {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1140px;
    margin: 0 auto 24px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

    .footer-main__payments img {
        height: 28px;
        width: auto;
        border-radius: 4px;
    }

/* Copyright + powered row */
.footer-main__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 0 28px;
    border-top: 1px solid #2a2a2a;
}

.footer-main__copy {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.3px;
}

.footer-main__powered {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #555;
    text-decoration: none;
    transition: color 200ms;
}

    .footer-main__powered:hover {
        color: #aaa;
    }

    .footer-main__powered img {
        filter: brightness(0) invert(0.4);
    }

/* ── Hide old footer classes we no longer use ── */
.section.footer1,
.section.cc-subscribe-form,
.footer,
.links-section-footer,
.made-with-webflow,
.webflow-logo-tiny,
.escondertodas {
    display: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 767px) {
    .footer-main {
        padding: 32px 24px 0;
    }

    .footer-main__inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-main__links {
        align-items: center;
    }

        .footer-main__links a,
        .footer-main__links .footer-link {
            text-align: center;
        }

    .footer-main__payments {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-main__bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 479px) {
    .footer-newsletter {
        padding: 40px 16px 32px;
    }

    .footer-newsletter__form {
        max-width: 100%;
    }
}
