
.general.contenedor {
    width: 100%;
    height: 30vh;

}
.servicios.contenedor {
    width: 100%;
    height: 80vh;
    margin: auto; 
    background-color: var(--color-secundario);   
}

.title-servicios{
    color: #fff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: .2rem ;
    margin-bottom: 2.8rem;
}
.info, .info-2 {
    text-align: center;
    list-style: none;
    font-size: 1.5rem; 
    font-weight: 500;
    margin-top: 1rem; 
    transition: all .5s; 
    
}
.info a{
    color: var(--color-secundario);
    padding: .4rem 3.5rem;
    border-radius: 2rem;
    background-color: #fff;    
}
.info:hover{
    transform: scale(1.1);
    transition: all .5s;
}
.info:hover a{
    background-color:var(--color-opcional);
    color: #fff;
    transition: all .5s; 
}
.operadora{
    width: 100%;
    height: 30vh;
    justify-content: center;
    display: flex;
    
}
.operadora-content{
    width: 26rem;
    height: 26rem;
    display: flex;
    margin-top: 2rem;
    border-radius: 50%;
    background-color: #fff;
}
.operadora-content img{
    margin: auto;
    width: 26rem;
    height: 30rem;
    padding: 2rem; 
      
}
.caja-servicios{
    width: 100%;
    height: 20vh;
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
    
}
.caja{
    width: 11rem;
    height: 11rem;
    margin: auto;
    text-align: center; 
}
.caja img{
    width: 70%;
    margin-top: 1rem;
    padding: 1rem;
    border: solid .2rem #fff;
    border-radius: 10%;
    transition: all 400ms; 
}
.caja h4{
    font-size: 1.6rem;
    color: #fff;
    margin-top: 1.3rem;
    font-weight: 500;
    transition: all 500ms; 
}
.caja.contenido{
    width: 100%;
    position: absolute;
    overflow: hidden;
    
}
.contenido p{
    display: none;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    padding: .6rem;
    color: #fff;
    opacity: 0;
    font-weight: 100;
    transform: translateY(-6rem);
    transition: all 600ms; 
    
}
.caja:hover{  
    background-color: rgba(135, 0, 0, .5);  
    box-shadow: 0 .5rem .5rem 0.5rem rgba(0, 0, 0, .5);   
    
}
.caja:hover img{
    transform: translateY(-3rem);
}
.caja:hover h4{
    transform: translateY(-3rem);
}
.caja:hover .contenido p{
    transform: translateY(-3rem);
    opacity: 1;
    
}
.recursos-contenedor{
    width: 100%;
    height: 100%;
    margin-top: -6rem;
    display: flex;    
    flex-wrap: wrap;
    justify-content: space-between;
}
.recursos-card {
    position: relative;
    width: 49%; 
    height: 55vh;       
    line-height: 1.2; 
    margin-bottom: -2.5rem;         
}
.recursos-contenido{
    list-style: none;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    padding: 2rem 2rem 2rem 1rem;
    color: var(--color-terciario);
    margin: auto;
    justify-content: center;
    align-items: center; 
    line-height: 1.3; 
         
}
.recursos-contenido span{
    display: inline-block;
    animation: contenido 3s; 
}
.recursos-contenido img{
    width: 2.8rem;
    margin: -0.8rem 1rem;
    padding: .4rem; 
}
/* @media screen and (min-width: 360px){
    .caja-servicios{
        width: 100%;
        height: 40vh;
        margin-top: 12rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around; 
        
    }
    footer {
        position: relative;
        text-align: center;
        width: 100%;
        height: 35vh;
        background-color: var(--color-terciario);
    }
} */


@media screen and (min-width: 1024px){

        
    .general.contenedor {
        width: 100%;
        height: 50vh;
        margin-top: 2rem;
        margin-bottom: -5rem;
    }
    .info{
        display: none;
    }
    
    .servicios.contenedor {
        width: 100%;
        height: 60vh;
        margin-bottom: -2rem;
    }
    .caja-servicios{
        width: 100%;
        height: 40vh;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; 
        margin: auto;
    }
    .caja{
        width: 20rem;
        height: 15rem;
        margin: auto;        
    }
    .caja img{
        width: 60%;
        margin-top: 1rem;
        padding: 1rem;
        transition: all 400ms; 
    } 
    .recursos-contenedor{
        width: 100%;
        height: 100%;
        margin-top: -6rem;
        display: flex;    
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .recursos-card {
        position: relative;
        width: 49%; 
        height: 50vh;       
        line-height: 1.4; 
        margin-bottom: 4rem;         
    }
    .recursos-contenido{
        list-style: none;
        font-size: 1.6rem;
        font-style: italic;
        font-weight: 500;
        padding: 2rem 2rem 2rem 1rem;
        color: var(--color-terciario);
        margin: auto;
        justify-content: center;
        align-items: center; 
        line-height: 2; 
             
    }
    .recursos-contenido span{
        display: inline-block;
        animation: contenido 3s; 
    }
    .recursos-contenido img{
        width: 2.8rem;
        margin: -0.8rem 1rem;
        padding: .4rem; 
    }

    @keyframes contenido {
        0% {
            transform: translateX(-100rem);
            opacity: 0;
            
        }
        
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .footer.contenedor{
        margin-top: 5rem;
    }
    .float{
        position:fixed;
        width:60px;
        height:60px;
        bottom:40px;
        right:40px;
        background-color:#63b160;
        color:#FFF;
        border-radius:50px;
        text-align:center;
      font-size:30px;
        box-shadow: 2px 2px 3px #999;
      z-index:100;
    }
    .float:hover {
        text-decoration: none;
        color: #25d366;
      background-color:#fff;
    }
    
    .my-float{
        margin-top:16px;
    }
    @media screen and (min-width: 360px){
        .caja-servicios{
            width: 100%;
            height: 50vh;
            margin-top: 12rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around; 
            
        }
        footer {
            position: relative;
            text-align: center;
            width: 100%;
            height: 35vh;
            background-color: var(--color-terciario);
            margin-top: 4rem;
        }
    }
    
    @media screen and (min-width: 1024px){

    .footer.contenedor{
        margin-top: -18rem;
       
    }
    .servicios.contenedor {
        width: 100%;
        height: 70vh;
        margin-bottom: -2rem;
    }
    
}
    @media screen and (min-width: 1600px){

        .servicios.contenedor {
            width: 100%;
            height: 70vh;
            margin-bottom: 2rem;
        }
        .recursos-contenedor{
            width: 100%;
            height: 100%;
            margin-top: 4rem;
            display: flex;    
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .recursos-contenido img{
            width: 3rem;
            margin: -0.8rem 1rem;
            padding: .4rem; 
        }  
        .recursos-contenido{
            list-style: none;
            font-size: 2rem;
            font-style: italic;
            font-weight: 500;           
            line-height: 2.2;         
        }   
}