/*===
INDEX
===*/
.caja-interior{
    height: auto;
}

.seccion{
    background: #f8fbf2;
    border: 3px solid #ec008b;
    border-radius: 10px;
    padding: 20px;
}


.seccion1{
    width: 100%;
    margin-top: 20px;
}

.seccion2{
    margin-top: 20px;
    width: 31%;
}

.seccion-tit{
    display: flex;
    justify-content: flex-start;
}

.tit{    
    background: #F9AD0D;
    padding: 10px;}

.tit b{
    /*-webkit-text-stroke: 2px white;*/
    color: white;
    font-size: 16pt;
}

.seccion-text{
    margin-top: 15px;
}

.contenedor-secc2{   
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

/*Responsivo*/

@media all and (max-width:900px){
    .seccion2{
        width: 49%;
    }
    
    .contenedor-secc2{
        flex-wrap: wrap;
    }
}

@media all and (max-width:700px){
    .seccion2{
        width: 100%;
    }
    
    .contenedor-secc2{
        flex-wrap: wrap;
    }
}




