#footer {
    background: #333333;
    color: #f5f5f5;
    
}

@media (max-height: 680px) or (max-width: 991px) {
    #footer { scroll-margin-top: 59px; }
}

.titulo-azul {
    color: #39598A !important;
    font-size: 20px;
}

.texto-gris { color: #757575 !important; }
.texto-blanco { color: white !important; }

.footer-row { max-width: 80%; margin: auto; }
#footer { padding: 50px 0; }

.formulario {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulario textarea { 
    height: 200px !important; 
    resize: none;
}

.formulario input,
.formulario textarea {
    border-radius: 20px;
    height: 40px;
    padding: 15px;
}

.formulario button {
    width: fit-content;
    border: 2px white solid;
    background-color: transparent;
    color: white;
    padding: 10px 30px;
    margin-top: 5px;
    border-radius: 5px;
    transition: all .4s ease;
}
.formulario button:hover {
    cursor: pointer;
    background-color: white;
    color: #333333;
    box-shadow: 0px 0px 10px white;
}

.iconos { margin: 5px 0; }
.iconos i {
    color: white;
    
    font-size: 30px;
}

@media (max-width:767px) {
    .footer-row {
        max-width: 100% !important;
    }
}