footer{

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    height: 800px;
    width: 100%;
    color: var(--negro);
    background-color: var(--gris_muy_claro);

}

#footer-menu{

    height: 90%;
    width: 40%;

}

#footer-title-maps{

    font-size: 1.9rem;
    font-weight: 400;

}

footer legend{

    font-size: 1.4rem;

}

#footer-form{

    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 50%;

}

.form-imp{
    text-indent: 12px;
    font-family: "Poppins";
    height: 40px;
    background: none;
    color: var(--negro);
    border: 2px solid var(--oro);
    font-size: 1rem;
}

.form-imp:focus{
    outline: none;
    border: 2px solid var(--verde);
}

#footer-content{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    width: 100%;

}

#footer-franja{

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--gris_oscuro);
    height: 50px;
    width: 100%;
    background-color: rgb(205, 205, 205);

}

#footer-btn{
    font-family: "Poppins";
    height: 50px;
    color: var(--oro);
    border: 2px solid var(--oro);
    background: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.5s;
}

#footer-btn:hover{
    cursor: pointer;
    color: var(--gris_muy_claro);
    background-color: var(--oro);
}

@media(max-width:1308px){
    footer, #footer-content{
        font-size: 0.9rem;
        height: auto;
        flex-direction: column;
        gap: 32px;
        padding-bottom: 128px;
    }
    #footer-title-maps{
        font-size: 1.2rem;
    }
    #footer-menu{
        text-align: center;
        width: 90%;
    }
    #footer-menu iframe{
        width: 100%;
    }
    #footer-form{
        margin: 2rem 0;
        width: 90%;
        text-align: center;
    }

    form legend{
        font-size: 1.2rem;
        color: var(--oro);
    }
}