.contenedor-footer{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background: linear-gradient(45deg, rgba(19,97,121,1) 0%, rgba(198,34,67,1) 100%);
    background-size:300% ;
    justify-content: space-between;
    text-align: center;
    animation: cambiar-Gradiente-footer 10s ease infinite;
}

@keyframes cambiar-Gradiente-footer{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}
.contenedor-info{
    display:flex;
    flex-direction: column;
    align-items: center;
    color: rgb(252, 252, 252);
    margin-bottom: 2rem;
}
.titulo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    
}
.titulo div{
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}
.linea-azul{
    background-color: #20a4cc;
    width: 30px;
    height: 3px;
    box-shadow: 0px 1px 1px #0c4050;
}
.subTitulo{
    color:#20a4cc;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 0px 2px 2px #0c4050;
}
.contenedor-item{
    display: flex;
    align-items: center;
    
}

.contenedor-item img{
    width: 30px;
    height: 35px;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    /* background-color: #20a4ccaf; */
}

.contenedor-item img:hover{
   transform: rotate3d(1,0,1,360deg);
   transition: all 0.6s ease-in-out;
}

.contenedor-redes{
    position: relative;
    display: flex;
    align-content: center;
    justify-content: space-around;
    width: 60%;
    height: 20%;
    transition: all 0.5s ease-in-out;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (max-width:992px){
    .contenedor-redes{
    position: relative;
    display: flex;
    align-content: center;
    justify-content: space-around;
    width: 100%;
    height: 20%;
    transition: all 0.5s ease-in-out;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
}
.contenedor-redes img{
    /* background: rgba(255, 255, 255, 0.664);
    border-radius: 50rem; */
    width:100px;
    height: 45px;
    transition: all 0.5s ease-in-out;
}

.contenedor-redes img:hover{
    /* transform: scale(1.2); */
    
    transform: rotate(360deg);
    transition: all 0.7s ease-in-out;
    cursor: pointer;
}

.contenedor-redes a{
    margin:0;
    padding: 0;
}
 
.contenedor-pie{
    background-color: rgba(255, 255, 255, 0.178);
    display: flex;
    font-size: 18px;
    color: rgb(255, 255, 255);
    align-content: center;
    justify-content: center;
    grid-column: 1/4;
    width: 100%;
}

.map-footer{
    transform: translateX(40%);
    margin-top: -1rem;
    animation: none;
}
.map-parrafo{
    margin-left: -0.60rem;
}
@media(max-width:992px){
    .map-footer{
        transform: translateX(20%);
        
    }
    .contenedor-footer{
        grid-template-columns: repeat(3,1fr);
        
    }
    .contenedor-info{
        grid-column: 1/4;
    }

}

@media(max-width:390px){
    
    .contenedor-redes{
        margin-top: 5rem;
        flex-wrap: wrap;
    }

}

.desarrollador{
    text-decoration: none;
    color: #fff;
    font-weight: 900;
}