.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* El enlace se comporta como CONTENEDOR VERTICAL */
.footer-boton {
    text-decoration: none;
    display: flex;
    flex-direction: column;     /* uno debajo del otro */
    align-items: center;
    justify-content: center;
    gap: 14px;                  /* espacio entre elementos */
    width: 100%;
}

/* Imagen */
.footer img {
    width: 170px;
    height: auto;
    border-radius: 10px;
}

/* Textos */
.footer-text {
    font-size: 1.4rem;
    color: #334155;
    max-width: 420px;
    text-align: center;
}

/* BOTÓN DISCRETO */
.footer-btn {
    padding: 6px 14px;
    border: 1px solid #4f46e5;
    border-radius: 6px;
    background: transparent;
    color: #4f46e5;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all .2s ease;
    white-space: nowrap;
}

.footer-btn:hover {
    background: #4f46e5;
    color: #fff;
}

/* En escritorio: mantener TODO centrado y en columna */
@media (min-width: 720px) {
    .footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 28px 40px;
    }

    .footer-boton {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}