/* ── Footer ConlineWeb — formal / alineado al sistema visual ── */

.footer {
    --footer-bg: #050508;
    --footer-panel: rgba(10, 10, 15, 0.92);
    --footer-border: rgba(0, 243, 255, 0.1);
    --footer-border-soft: rgba(255, 255, 255, 0.07);
    --footer-muted: rgba(255, 255, 255, 0.52);
    --footer-text: rgba(255, 255, 255, 0.86);
    --footer-accent: var(--neon-blue, #00f3ff);
    --footer-accent-2: var(--electric-purple, #b967ff);
    --footer-green: var(--matrix-green, #00ff9d);
    --footer-shell-max: 1540px;
    --footer-shell-pad: var(--cw-shell-pad-x, 5%);
    position: relative;
    z-index: 100;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(0, 243, 255, 0.04), transparent 55%),
        linear-gradient(180deg, #0a0a0f 0%, var(--footer-bg) 100%);
    border-top: 1px solid var(--footer-border-soft);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.45), rgba(185, 103, 255, 0.35), transparent);
    pointer-events: none;
}

.footer-wrap {
    max-width: var(--footer-shell-max);
    margin: 0 auto;
    padding-left: var(--footer-shell-pad);
    padding-right: var(--footer-shell-pad);
}

/* ── CTA panel ── */
.footer-cta {
    padding: 2.75rem 0 0;
}

.footer-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
    border: 1px solid var(--footer-border);
    background:
        linear-gradient(135deg, rgba(0, 243, 255, 0.04) 0%, rgba(185, 103, 255, 0.03) 100%),
        var(--footer-panel);
    backdrop-filter: blur(16px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.footer-cta-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.35), transparent);
}

.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--footer-accent);
    margin-bottom: 0.85rem;
}

.footer-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--footer-accent), transparent);
}

.footer-cta-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 38rem;
}

.footer-cta-line {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #fff;
}

.footer-cta-line--muted {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--footer-muted);
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    flex-shrink: 0;
}

/* Botones — mismo lenguaje que navbar (pill + glow) */
.footer-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.82rem 1.65rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.footer-btn-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.footer-btn i {
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.footer-btn span:last-child {
    position: relative;
    z-index: 1;
}

.footer-btn-primary {
    color: #fff;
    background: rgba(10, 10, 15, 0.85);
    border: 2px solid var(--footer-accent);
    box-shadow:
        0 0 18px rgba(0, 243, 255, 0.25),
        0 0 36px rgba(0, 243, 255, 0.1),
        inset 0 0 12px rgba(0, 243, 255, 0.08);
}

.footer-btn-primary .footer-btn-glow {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.12), rgba(0, 255, 157, 0.08));
}

.footer-btn-primary i {
    filter: drop-shadow(0 0 4px var(--footer-accent));
}

.footer-btn-primary:hover {
    transform: scale(1.04);
    border-color: var(--footer-green);
    box-shadow:
        0 0 24px rgba(0, 243, 255, 0.4),
        0 0 48px rgba(0, 243, 255, 0.15),
        inset 0 0 16px rgba(0, 243, 255, 0.12);
}

.footer-btn-secondary {
    color: var(--footer-text);
    background: rgba(10, 10, 15, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.footer-btn-secondary .footer-btn-glow {
    background: linear-gradient(135deg, rgba(185, 103, 255, 0.1), rgba(0, 243, 255, 0.06));
}

.footer-btn-secondary:hover {
    transform: scale(1.04);
    color: #fff;
    border-color: rgba(185, 103, 255, 0.45);
    box-shadow:
        0 0 20px rgba(185, 103, 255, 0.2),
        inset 0 0 14px rgba(185, 103, 255, 0.06);
}

.footer-btn:hover .footer-btn-glow {
    opacity: 1;
}

.footer-btn:focus-visible,
.footer-nav a:focus-visible,
.footer-social-btn:focus-visible,
.footer-legal a:focus-visible,
.footer-whatsapp-float-btn:focus-visible {
    outline: 2px solid var(--footer-accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .footer-btn:hover,
    .footer-social-btn:hover,
    .footer-whatsapp-float-btn:hover {
        transform: none;
    }

    .footer-quantum-pulse {
        animation: none;
    }
}

/* ── Grid principal ── */
.footer-main {
    padding: 3.25rem 0 2.75rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) repeat(4, minmax(0, 1fr));
    gap: 0;
}

.footer-col {
    padding: 0 clamp(0.85rem, 1.35vw, 1.4rem);
    border-right: 1px solid var(--footer-border-soft);
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col.footer-brand {
    padding-left: clamp(0.65rem, 1.1vw, 1.15rem);
    padding-right: clamp(1.35rem, 2.2vw, 2.15rem);
}

.footer-col:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-col.footer-contact-col {
    padding-left: clamp(1rem, 1.5vw, 1.55rem);
    padding-right: clamp(0.65rem, 1.1vw, 1.15rem);
}

.footer-heading {
    margin: 0 0 1.35rem;
    padding-bottom: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--footer-border-soft);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--footer-accent);
}

.footer-brand {
    padding-right: clamp(1.35rem, 2.2vw, 2.15rem);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.35rem;
}

.footer-logo {
    display: block;
    max-width: 156px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 243, 255, 0.25));
    opacity: 0.96;
    transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(0, 243, 255, 0.45));
}

.footer-logo-fallback {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.35rem;
}

.footer-tagline {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 24rem;
    font-weight: 500;
}

.footer-geo {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1.35rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--footer-muted);
}

.footer-geo i {
    color: var(--footer-accent);
    font-size: 0.72rem;
}

.footer-contact-label {
    display: block;
    margin-bottom: 0.22rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--footer-muted);
}

.footer-contact-line--strong {
    font-weight: 700;
    color: #fff;
}

.footer .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.4rem 0.7rem 0.4rem 0.55rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--footer-border-soft);
}

.footer-trust i {
    color: var(--footer-accent);
    font-size: 0.7rem;
    opacity: 0.9;
}

.footer-nav,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li + li {
    margin-top: 0.7rem;
}

.footer-contact li + li {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--footer-border-soft);
}

.footer-nav a {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--footer-accent), var(--footer-accent-2));
    transition: width 0.25s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-contact li {
    display: block;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--footer-muted);
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.footer-contact-line {
    display: block;
}

.footer-contact-phones {
    gap: 0.4rem;
}

.footer-contact-phone-row {
    display: block;
}

.footer-contact a {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.45;
    transition: color 0.25s ease;
    display: inline-block;
    position: relative;
}

.footer-contact a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--footer-accent), var(--footer-accent-2));
    transition: width 0.25s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.65rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--footer-border-soft);
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--footer-border-soft);
    background: rgba(10, 10, 15, 0.6);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.footer-social-btn:hover {
    color: #fff;
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social-mobile {
    display: none;
}

/* ── Barra inferior ── */
.footer-bottom {
    border-top: 1px solid var(--footer-border-soft);
    background: rgba(0, 0, 0, 0.4);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.15rem clamp(2rem, 5vw, 4rem) 1.35rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
}

.footer-legal a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--footer-accent);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
    font-size: 0.7rem;
}

/* ── WhatsApp flotante — verde + lenguaje neon/glass del sitio ── */
.footer-whatsapp-float-btn {
    position: fixed;
    bottom: 48px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(0, 255, 157, 0.14) 0%, rgba(0, 243, 255, 0.05) 100%),
        rgba(10, 10, 15, 0.94);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    border: 2px solid rgba(0, 255, 157, 0.5);
    box-shadow:
        0 0 20px rgba(0, 255, 157, 0.26),
        0 0 40px rgba(0, 255, 157, 0.1),
        inset 0 0 14px rgba(0, 255, 157, 0.1),
        0 10px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    overflow: visible;
    isolation: isolate;
}

.footer-whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, rgba(0, 255, 157, 0.24), transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.footer-whatsapp-float-btn::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 14%;
    right: 14%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.65), rgba(0, 243, 255, 0.35), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.footer-whatsapp-float-btn:hover {
    transform: scale(1.06);
    border-color: var(--footer-green);
    box-shadow:
        0 0 28px rgba(0, 255, 157, 0.42),
        0 0 56px rgba(0, 255, 157, 0.15),
        inset 0 0 18px rgba(0, 255, 157, 0.14),
        0 12px 36px rgba(0, 0, 0, 0.5);
}

.footer-whatsapp-float-btn:focus-visible {
    outline-color: var(--footer-green);
}

.footer-whatsapp-float-btn .footer-btn-content {
    width: 52%;
    height: 52%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-whatsapp-float-btn img {
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 0 4px rgba(0, 255, 157, 0.8))
        drop-shadow(0 0 10px rgba(0, 255, 157, 0.35));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-whatsapp-float-btn:hover img {
    filter:
        drop-shadow(0 0 7px rgba(0, 255, 157, 0.95))
        drop-shadow(0 0 14px rgba(0, 243, 255, 0.35));
    transform: scale(1.06);
}

.footer-quantum-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.32) 0%, rgba(0, 243, 255, 0.08) 45%, transparent 72%);
    animation: footer-wa-pulse 2.8s ease-out infinite;
    opacity: 0;
    z-index: 1;
}

.footer-pulse2 {
    animation-delay: 1.4s;
}

@keyframes footer-wa-pulse {
    0% { transform: scale(1); opacity: 0.45; }
    100% { transform: scale(1.65); opacity: 0; }
}

.footer-whatsapp-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 15, 0.96);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(0, 255, 157, 0.22);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 16px rgba(0, 255, 157, 0.08);
    pointer-events: none;
    overflow: hidden;
}

.footer-whatsapp-tooltip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.45), transparent);
}

.footer-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 22px;
    border: 5px solid transparent;
    border-top-color: rgba(10, 10, 15, 0.96);
}

.footer-whatsapp-float-btn:hover .footer-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1100px) and (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem 0;
    }

    .footer-col {
        border-right: none;
        padding: 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--footer-border-soft);
        max-width: 38rem;
    }

    .footer-contact-col {
        grid-column: 1 / -1;
        padding-top: 0.5rem;
        border-top: 1px solid var(--footer-border-soft);
    }
}

@media (max-width: 768px) {
    .footer {
        --footer-mobile-card: rgba(255, 255, 255, 0.035);
        --footer-mobile-border: rgba(255, 255, 255, 0.08);
        --footer-mobile-radius: 16px;
    }

    .footer-cta {
        padding-top: 1.5rem;
    }

    .footer-cta-panel {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.35rem 1.15rem;
        border-radius: var(--footer-mobile-radius);
        gap: 1.05rem;
        border-color: rgba(0, 243, 255, 0.14);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.05) inset,
            0 12px 36px rgba(0, 0, 0, 0.32);
    }

    .footer-eyebrow {
        justify-content: center;
        width: 100%;
        margin-bottom: 0.55rem;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
    }

    .footer-eyebrow::before {
        display: none;
    }

    .footer-cta-title {
        align-items: center;
    }

    .footer-cta-line {
        font-size: clamp(1.02rem, 4.2vw, 1.2rem);
    }

    .footer-cta-line--muted {
        font-size: clamp(0.86rem, 3.4vw, 0.98rem);
        line-height: 1.45;
    }

    .footer-cta-actions {
        width: 100%;
        max-width: 22rem;
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 0.88rem 1.1rem;
        font-size: 0.74rem;
    }

    .footer-main {
        padding: 1.5rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 0.65rem;
        row-gap: 0.65rem;
        text-align: center;
    }

    .footer-col {
        border-right: none;
        padding: 0;
        min-width: 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 0.35rem;
        padding: 1.15rem 1rem 1.25rem;
        border: 1px solid var(--footer-mobile-border);
        border-radius: var(--footer-mobile-radius);
        background:
            linear-gradient(165deg, rgba(0, 243, 255, 0.05) 0%, rgba(185, 103, 255, 0.03) 100%),
            var(--footer-mobile-card);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
        text-align: center;
    }

    .footer-logo-link {
        display: block;
        margin: 0 auto 0.85rem;
        text-align: center;
    }

    .footer-logo {
        max-width: 132px;
        margin: 0 auto;
    }

    .footer-tagline {
        margin: 0 auto 0.45rem;
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 26rem;
        color: rgba(255, 255, 255, 0.88);
    }

    .footer-geo {
        margin: 0 auto 1rem;
        justify-content: center;
        text-align: center;
        font-size: 0.8rem;
        max-width: 26rem;
        color: rgba(255, 255, 255, 0.55);
    }

    .footer-trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 0.45rem;
    }

    .footer-trust li {
        width: auto;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
        font-size: 0.68rem;
        padding: 0.38rem 0.62rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(0, 0, 0, 0.22);
    }

    .footer-trust li i {
        color: rgba(0, 243, 255, 0.75);
        font-size: 0.72rem;
    }

    .footer-col--links,
    .footer-col--wide,
    .footer-contact-col {
        grid-column: auto;
        padding: 0.95rem 0.7rem 1rem;
        border: 1px solid var(--footer-mobile-border);
        border-radius: 14px;
        background: var(--footer-mobile-card);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
    }

    .footer-col--links .footer-heading,
    .footer-col--wide .footer-heading,
    .footer-contact-col .footer-heading {
        margin: 0 auto 0.65rem;
        text-align: center;
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        color: rgba(255, 255, 255, 0.88);
    }

    .footer-heading {
        margin: 0 auto 0.75rem;
        padding-bottom: 0;
        border-bottom: none;
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1.35;
        text-align: center;
        white-space: normal;
        word-break: normal;
    }

    .footer-col--links .footer-heading::after,
    .footer-col--wide .footer-heading::after,
    .footer-contact-col .footer-heading::after {
        margin: 0.45rem auto 0;
    }

    .footer-heading::after {
        position: static;
        display: block;
        width: 1.5rem;
        height: 2px;
        margin: 0.4rem auto 0;
        transform: none;
        left: auto;
        background: linear-gradient(90deg, var(--footer-accent), var(--footer-accent-2));
        border-radius: 2px;
    }

    .footer-nav li + li {
        margin-top: 0.42rem;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer-nav a,
    .footer-contact a {
        font-size: 0.78rem;
        line-height: 1.38;
        display: inline-block;
        padding: 0.1rem 0;
        color: rgba(255, 255, 255, 0.58);
    }

    .footer-nav a:hover,
    .footer-contact a:hover {
        color: rgba(255, 255, 255, 0.92);
    }

    .footer-nav--dense {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.38rem;
    }

    .footer-nav--dense li + li {
        margin-top: 0;
    }

    .footer-contact-col {
        grid-column: auto;
        margin-top: 0;
    }

    .footer-contact li + li {
        margin-top: 0.55rem;
        padding-top: 0;
        border-top: none;
    }

    .footer-contact li {
        font-size: 0.78rem;
        text-align: center;
    }

    .footer-contact-line {
        color: rgba(255, 255, 255, 0.52);
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
    }

    .footer-contact-body {
        align-items: center;
    }

    .footer-social--desktop {
        display: none;
    }

    .footer-social-mobile {
        display: block;
        margin-top: 0.35rem;
        padding: 1.1rem 0 1rem;
        border-top: 1px solid var(--footer-border-soft);
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
    }

    .footer-social-mobile__label {
        margin: 0 0 0.75rem;
        text-align: center;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.42);
    }

    .footer-social-mobile .footer-social {
        justify-content: center;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        gap: 0.65rem;
    }

    .footer-social-mobile .footer-social-btn {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
        border-color: rgba(0, 243, 255, 0.18);
        background: rgba(10, 10, 15, 0.75);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }

    .footer-bottom {
        border-top: 1px solid var(--footer-border-soft);
        background: rgba(0, 0, 0, 0.48);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: flex-end;
        gap: 0.75rem;
        padding: 1rem var(--footer-shell-pad) calc(1.5rem + env(safe-area-inset-bottom, 0px));
    }

    .footer-legal {
        order: 1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem 0.65rem;
        width: 100%;
        max-width: 20rem;
        margin: 0 auto;
    }

    .footer-legal-sep {
        display: none;
    }

    .footer-legal a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.35rem;
        padding: 0.45rem 0.55rem;
        border-radius: 10px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.55);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .footer-legal a:hover {
        color: var(--footer-accent);
        border-color: rgba(0, 243, 255, 0.22);
        background: rgba(0, 243, 255, 0.06);
    }

    .footer-copy {
        order: 2;
        font-size: 0.7rem;
        line-height: 1.5;
        margin-top: 0.1rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.32);
        width: 100%;
    }

    .footer-whatsapp-float-btn {
        width: 54px;
        height: 54px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        right: 16px;
    }

    .footer-whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 520px) {
    .footer-cta {
        padding-top: 1.35rem;
    }

    .footer-cta-panel {
        padding: 1rem 0.95rem;
    }

    .footer-heading {
        font-size: 0.64rem;
    }
}

/* ——— Lock tipografía CTA footer (evita Poiret/gradient/clip de CSS global) ——— */
.footer .footer-cta-title {
    font-family: inherit !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    text-wrap: wrap !important;
    text-shadow: none !important;
}

.footer .footer-cta-line {
    display: block !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.025em !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    text-wrap: wrap !important;
}

.footer .footer-cta-line--muted {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    color: var(--footer-muted, rgba(255, 255, 255, 0.58)) !important;
    -webkit-text-fill-color: var(--footer-muted, rgba(255, 255, 255, 0.58)) !important;
}

.footer .footer-heading {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    color: inherit !important;
    text-wrap: wrap !important;
}
