/* ============================================================
   BURGOCAR LANDING CORE — Footer Styles
   BEM + CSS Custom Properties
   ============================================================ */
:root {
    --blc-footer-bg:       #0B544B;
    --blc-footer-text:     #e2f0e8;
    --blc-footer-link:     #ffffff;
    --blc-footer-accent:   #9AC123;
    --blc-footer-social:   #046537;
    --blc-footer-font:     'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.blc-footer {
    background-color: var(--blc-footer-bg);
    color: var(--blc-footer-text);
    font-family: var(--blc-footer-font);
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blc-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.blc-footer__block {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Enlaces Legales */
.blc-footer__links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.blc-footer__link {
    color: var(--blc-footer-link);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}
.blc-footer__link:hover {
    color: var(--blc-footer-accent);
}

/* Contacto */
.blc-footer__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.blc-footer__contact-text {
    color: var(--blc-footer-text);
}
.blc-footer__contact-email {
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--blc-footer-link); /* Color blanco por defecto */
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.blc-footer__contact-email:hover {
    color: var(--blc-footer-accent); /* Color hover (#9AC123) editable */
    opacity: 1;
}

/* Redes Sociales */
.blc-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blc-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--blc-footer-social);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.blc-footer__social-link:hover {
    transform: translateY(-3px);
    background-color: var(--blc-footer-accent);
}
.blc-footer__social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Logos */
.blc-footer__logos {
    display: flex;
    align-items: center;
    gap: 25px;
}
.blc-footer__logo-link {
    display: inline-block;
}
.blc-footer__logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Si los logos son de color, los forzamos a blanco para que encajen mejor. Se puede quitar si ya son blancos */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.blc-footer__logo-link:hover .blc-footer__logo-img {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .blc-footer__inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 35px;
    }
    
    .blc-footer__block,
    .blc-footer__links,
    .blc-footer__contact,
    .blc-footer__logos {
        flex-direction: column;
        justify-content: center;
    }
    
    .blc-footer__social {
        justify-content: center;
    }
}

/* ============================================================
   FORZAR BORDES CERO PARA HELLO ELEMENTOR (FOOTER)
   ============================================================ */
.elementor-widget-blc_footer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
