html {
    min-height: 100%;
    position: relative;
}

.footer {
    padding: 0;
    width: 100%;
    height: fit-content;
    background: var(--azul);
    margin-top: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-info {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 2rem 0;
}

.footer-text {
    width: fit-content;
}

.footer-contact {
    width: fit-content;
}

.footer-contact form button {
    width: 100%;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    padding-bottom: .5rem;
}

.footer p {
    color: var(--blanco);
    font: 1rem "Poppins", sans-serif;
}

.icono-blanco {
    color: var(--blanco);
    text-decoration: none;
    font-size: 3rem;
}

.icono-whatsapp {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width:600px) {
    .footer-info {
        flex-direction: column;
        width: fit-content;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact {
        margin-top: 1rem;
    }
}