/* ============================================================
   FOOTER CORPORATIVO
============================================================ */
footer.footer-reformular {
    background-color: var(--abyss);
    color: #D1D5DB;
    padding: 6rem 0 2rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at center, rgba(76, 183, 155, 0.15) 0%, transparent 30%),
        repeating-radial-gradient(circle at 0% 0%, transparent 0, transparent 20px, rgba(255, 255, 255, 0.01) 21px, rgba(255, 255, 255, 0.01) 22px),
        repeating-radial-gradient(circle at 100% 100%, transparent 0, transparent 20px, rgba(255, 255, 255, 0.01) 21px, rgba(255, 255, 255, 0.01) 22px);
    background-size: 80% 80%, 30% 30%, 30% 30%;
    background-position: left -40% bottom 10%, left top, right bottom;
    background-repeat: no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--brand-green-primary);
}

.footer-logo img {
    height: 2.5rem;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.footer-addresses div {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-addresses strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

/* Marquee */
.footer-marquee {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.footer-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

.marquee-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: auto !important;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green-primary);
    border-radius: 50%;
}

/* Copy */
.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-top: 0.5rem;
}

/* Ajustes fondo responsive */
@media (max-width: 767px) {
    footer.footer-reformular {
        background-image:
            radial-gradient(circle at center, rgba(76, 183, 155, 0.15) 0%, transparent 30%),
            repeating-radial-gradient(circle at 0% 0%, transparent 0, transparent 20px, rgba(255, 255, 255, 0.01) 21px, rgba(255, 255, 255, 0.01) 22px),
            repeating-radial-gradient(circle at 100% 100%, transparent 0, transparent 20px, rgba(255, 255, 255, 0.01) 21px, rgba(255, 255, 255, 0.01) 22px);
        /* Centramos la luz y ajustamos posiciones de las rallas */
        background-position: center center, left top, right bottom;
        /* Aumentamos tamaño relativo de la luz en móvil para que destaque al centro */
        background-size: 100% 100%, 100% 20%, 100% 20%;
        text-align: center;
    }
}