.footer-main {
    background: radial-gradient(120% 130% at 82% 8%, rgba(36, 72, 255, 0.24) 0%, rgba(1, 17, 43, 0) 42%),
    radial-gradient(90% 120% at 8% 90%, rgba(6, 182, 212, 0.11) 0%, rgba(1, 17, 43, 0) 54%),
    #01112B;
    color: #fff;
    position: relative;
}

.footer-shell {
    position: relative;
    z-index: 1;
    max-width: 88rem !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(27rem, 1fr);
    gap: clamp(2rem, 3.2vw, 4rem);
    align-items: start;
    position: relative;
}

.footer-grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 54%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.footer-description {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.78;
    max-width: 52ch;
}

.footer-availability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.4rem;
    margin-bottom: 1.2rem;
    color: #82FD28;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: rgba(130, 253, 40, 0.08);
    border: 1px solid rgba(130, 253, 40, 0.35);
    min-width: 250px;
    height: 46px;
    /* Altura fija para evitar saltos */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    cursor: pointer;
    position: relative;
}

.footer-availability:hover {
    background: #82FD28;
    color: #01112B;
    border-color: #82FD28;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(130, 253, 40, 0.25);
}

/* Contenedor interno para evitar que el cÃƒÆ’Ã‚Â­rculo se mueva */
.footer-availability-wrapper {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    position: relative;
}

.footer-availability .text-stack {
    display: inline-grid;
    grid-template-areas: "stack";
    align-items: center;
    justify-items: start;
}

.footer-availability .default-text {
    grid-area: stack;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.footer-availability .hover-text {
    grid-area: stack;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    pointer-events: none;
}

.footer-availability:hover .default-text {
    opacity: 0;
    transform: translateY(-5px);
}

.footer-availability:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}

.footer-availability:hover .footer-status-dot {
    background: #01112B;
    box-shadow: none;
    animation: none;
}

.footer-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
}

.footer-trust-list i {
    width: 1.15rem;
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 0.72rem;
    margin-top: 1.5rem;
}

.footer-form-col {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.3rem;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 20px 40px rgba(2, 7, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 40rem;
    justify-self: end;
}

.footer-help-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    position: relative;
    max-width: 40rem;
    justify-self: end;
}

.footer-help-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.footer-help-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 1rem;
}

.footer-help-copy {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 420px;
}

.footer-help-btn {
    width: auto;
    min-width: 240px;
    padding: 0.85rem 1.6rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(130, 253, 40, 0.08);
    border: 1px solid rgba(130, 253, 40, 0.35);
    color: #82FD28;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: none;
    text-decoration: none;
}

.footer-help-btn:hover {
    background: #82FD28;
    color: #01112B;
    border-color: #82FD28;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(130, 253, 40, 0.25);
}

.footer-help-btn i {
    font-size: 1.25rem;
}

.footer-overline {
    color: rgba(164, 182, 255, 0.74);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-title {
    font-size: clamp(2rem, 2.55vw, 2.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.78rem;
}

.footer-microcopy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.62;
    margin-bottom: 0.78rem;
}

.footer-form {
    display: grid;
    gap: 0.78rem;
}

.footer-step {
    display: grid;
    gap: 0.72rem;
}

.footer-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.footer-field {
    display: grid;
    gap: 0.45rem;
}

.footer-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-input {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.17);
    color: #fff;
    border-radius: 0.9rem;
    padding: 0.85rem 1rem;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
    outline: none;
}

.footer-input:hover {
    border-color: rgba(168, 190, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.footer-input:focus {
    border-color: #89a0ff;
    background: rgba(36, 72, 255, 0.14);
    box-shadow: 0 0 0 3px rgba(83, 116, 255, 0.38);
}

.footer-input.is-invalid {
    border-color: #f87171;
    background: rgba(239, 68, 68, 0.12);
}

.footer-input.is-valid {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}

.field-error {
    min-height: 1.15rem;
    color: #fca5a5;
    font-size: 0.76rem;
    margin: 0;
}

.field-hint {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
}

.footer-btn {
    border-radius: 0.9rem;
    padding: 0.82rem 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid transparent;
}

.footer-btn:focus-visible,
.social-icon:focus-visible,
.footer-legal-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(130, 156, 255, 0.46);
}

.footer-btn-primary {
    background: linear-gradient(160deg, #3d63ff 0%, #2448FF 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(36, 72, 255, 0.28);
}

.footer-btn-primary:hover:not(:disabled) {
    background: linear-gradient(160deg, #4e73ff 0%, #2f53ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(36, 72, 255, 0.34);
}

.footer-btn-primary:disabled {
    cursor: wait;
    opacity: 0.88;
}

.footer-btn-primary.is-loading i {
    animation: footer-spin 1s linear infinite;
}

.footer-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.88);
}

.footer-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    flex-wrap: wrap;
}

.footer-step-two-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 0.75rem;
    align-items: start;
}

.footer-form-trust {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.64);
}

.footer-form-status {
    min-height: 1.15rem;
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-form-status.is-error {
    color: #fca5a5;
}

.footer-form-status.is-success {
    color: #86efac;
}

@keyframes footer-spin {
    to {
        transform: rotate(360deg);
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.05rem;
    transition: background 0.22s ease, color 0.22s ease, transform 0.24s ease, border-color 0.22s ease, box-shadow 0.24s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(36, 72, 255, 0.26);
    color: #fff;
    border-color: rgba(126, 150, 255, 0.7);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 24px rgba(36, 72, 255, 0.25);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #82FD28;
    box-shadow: 0 0 0 0 rgba(130, 253, 40, 0.62);
    animation: pulse-dot 2.2s ease-out infinite;
    display: inline-block;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(130, 253, 40, 0.62);
    }

    /* Green pulse at mid-point */
    58% {
        opacity: 0.95;
        box-shadow: 0 0 0 8px rgba(130, 253, 40, 0);
    }

    100% {
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(130, 253, 40, 0);
    }
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.16);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.82rem;
}

.footer-legal-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-nav a {
    color: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-legal-nav a:hover {
    color: #c2ceff;
}

#footer-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #22c55e;
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

#footer-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.9rem;
    }

    .footer-grid::after {
        display: none;
    }

    .footer-form-col {
        max-width: none;
        justify-self: stretch;
    }

    .footer-form-col {
        order: 1;
    }

    .footer-info-col {
        order: 2;
        position: relative;
        padding-top: 1.5rem;
    }

    .footer-info-col::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 15%, rgba(255, 255, 255, 0.18) 85%, rgba(255, 255, 255, 0) 100%);
    }
}

@media (max-width: 900px) {
    .footer-availability {
        display: none;
    }

    .footer-trust-list {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .footer-shell {
        padding-top: 4.3rem;
        max-width: 100% !important;
    }

    .footer-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .footer-fields-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .footer-form-col {
        padding: 1.15rem;
    }

    .footer-step-two-grid {
        grid-template-columns: 1fr;
    }

    .footer-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-nav {
        gap: 0.7rem 1rem;
    }
}
