/* ===== Footer Logixsoft ===== */
.footer-lgx {
    background: #00637A;
    color: #fff;
    padding: 2.75rem 0 2rem;
}

/* Grid: izquierda (logo+redes) | derecha (tagline+menús) */
.footer-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    /* ancho fijo para la columna del logo */
    column-gap: 3rem;
    align-items: start;
}

/* Columna izquierda */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: .75rem;
}

.footer-left .logo {
    height: 56px;
}

/* Redes bajo el logo */
.footer-left .social a {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #00637A;
    margin-right: .6rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.footer-left .social img {
    width: 18px;
    height: 18px;
    display: block;
}

/* Columna derecha */
.footer-right {
    display: flex;
    flex-direction: column;
}

/* Frase a la derecha del logo */
.footer-lgx .tagline {
    font-family: "Monument Extended", sans-serif;
    color: var(--brand-green);
    font-weight: 400;
    font-size: clamp(1.4rem, 1rem + .8vw, 2rem);
    line-height: 1.05;
    letter-spacing: .2px;
    margin: 6px 0 1rem;
    /* pequeño ajuste vertical para alinearla con el logo */
}

/* Menús (Navegación / Legal / Teléfono) */
.footer-right .footer-heading {
    color: var(--brand-green);
    font-weight: 400;
    margin-bottom: .75rem;
}

.footer-lgx a {
    color: #fff;
    opacity: .95;
    text-decoration: none;
}

.footer-lgx a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Copy */
.footer-lgx .copy {
    margin-top: 2rem;
    font-size: .85rem;
    opacity: .9;
}

/* Responsive */
@media (max-width:1023px) {
    .footer-grid {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }

    .footer-left .logo {
        height: 52px;
    }

    .footer-lgx .tagline {
        margin-top: .25rem;
        font-size: 1.6rem;
    }
}

@media (max-width:768px) {
    .footer-lgx .tagline {
        font-size: 1.4rem;
    }
}