/* Footer · replica pixel-perfect del original (estilos extraídos de WPCode snippets) */

.zander-footer-dark {
    background-color: #1D1D1B;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;

    /* Full-width breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 0 0;
    color: #fbfbfb;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    margin-top: 0;
}

/* Wrapper de las 3 filas superiores */
.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

/* Fila 1: Redes sociales */
.footer-row-socials {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    text-decoration: none;
}

.social-link img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Fila 2: Menú principal */
.footer-row-menu.main-pages {
    display: flex;
    gap: 25px;
}

.zander-footer-dark .footer-row-menu.main-pages a {
    color: #fbfbfb !important;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: color 250ms ease;
}

.zander-footer-dark .footer-row-menu.main-pages a:hover {
    color: #FCC61C !important;
}

/* Fila 3: Páginas legales */
.footer-row-menu.legal-pages {
    display: flex;
    gap: 20px;
}

.zander-footer-dark .footer-row-menu.legal-pages a {
    color: #fbfbfb !important;
    font-size: 12px;
    opacity: 0.5;
    text-decoration: none;
    transition: color 250ms ease, opacity 250ms ease;
}

.zander-footer-dark .footer-row-menu.legal-pages a:hover {
    color: #FCC61C !important;
    opacity: 1 !important;
}

/* Logo gigante */
.footer-branding-giant {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    line-height: 0;
}

.footer-giant-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Copyright */
.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.3;
    padding: 25px 0;
    background-color: #1D1D1B;
}
/* El <p> interno heredaba el tamaño de párrafo global (18px); lo fijamos al
   mismo tamaño que los enlaces legales (12px). */
.footer-copyright p {
    font-size: 12px;
    margin: 0;
}

/* Responsive */
@media (max-width: 689px) {
    .footer-row-menu.main-pages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-row-menu.main-pages a {
        font-size: 16px;
    }

    .footer-row-menu.legal-pages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .zander-footer-dark {
        padding: 60px 0 0 0;
    }

    .footer-copyright {
        font-size: 9px;
    }
}
