#iconos-widgets{
    display: flex;
    /* gap:8px; */
    margin-top: 44px;
    margin-right: 10px;
    width: calc(100% - 10px);
}

.widget {
    display: flex;
    flex: 1 1 100px;
    /* padding:3px; */
    /* border:solid 1px black; */
    border-radius: 4px;
    height: auto;
    
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;    

}

.titulo-widget {
    flex-basis: 100%;
    display:flex;
}
.cuerpo-widget {
    flex-basis: 100%;
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    /* flex: 4; */
    /* margin: 2px 7px 7px 6px; */
}
.column-1 {
    flex-basis: 100%;
    width:100%;
    /* flex: 1; */
}
.grow-2{
    flex:2;
}
.column-2 {
    /* flex-basis: calc(50% - 5px); */
    /* flex-basis: 50%; */
    /* width:100%;  */
}
.column-3 {
    /* flex-basis: 33%;
    width:100%; */
}
.column-4 {
    /* flex-basis: calc(25% - 7.5px); */
    /* flex-basis: 25%; */
}

.texto-widget-small .imagen-widget{
    display: flex;
    flex-basis: 100%;
    justify-items: center;
    justify-content: center;
    align-items: center;
    flex-basis: 30%;
}
.texto-widget-small{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: right;
    font-weight: bold;
    text-transform: uppercase;

}
.icono{
    width: 50px
}
/* .soy-widget{ */
    /* background-color: red; */
    /* gap:10px; */
   /* margin: 2px 7px 7px 6px; */

/* } */
.texto-widget-small .titulo-widget{
    font-size: 15px;
    margin-top: 10px;
    /* flex-basis: 100%; */
    justify-content: center;

}
.texto-widget-small .cuerpo-widget{
    font-size: 40px;
    /* flex-basis: 70%;  */
    display: flex;
    justify-content: center;
    /* flex: 4; */
    
}
.column-2 .cuerpo-widget{
    flex: 1;
    display: flex;
    justify-content: center;
    align-content: center;
}
.fila-1 .cuerpo-widget{
    flex: 4;
}
/* .fila-2 .cuerpo-widget{
    flex: 1;
} */
.fila-3 .cuerpo-widget{
    flex: 4;
}
.column-lateral .cuerpo-widget {
    display: flex;
    flex:1;
    margin: 15px;
    flex-direction: column;
}
.btn-lateral{
    width: 100%;
}
.num{
    width: 100%;
    font-size: 45px !important;
    margin-top: -65px;
    padding-top: 55px;
    color: white;   
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), 0 0 5px rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}
.num:hover {
    transform: scale(1.2);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 255, 255, 0.4);
    color: #f8f9fa;
}