.text_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: center;
}

.content2{
    flex: 0 0 calc(50% - 60px);
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: border 0.2s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 25px;
    row-gap: 20px;
}

.content2:hover{
    border: 1px solid #62ac0d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.c_title{
    font-size: 25px;
    font-weight: bold;
    margin: 0;
}

.c_text{
    font-size: 18px;
    color: #898989;
    margin: 0;
}   

.caracteristica{
    flex: 1;
    height: 200px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
    row-gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.4s ease;
}

.caracteristica:hover{
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.caracteristica:hover .image_contaienr {
    transform: scale(1.2);
}

.image_contaienr{
    margin-top: 10px;
    height: 60px;
    width: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #85B400, #84b40093);
    transition: transform 0.3s ease; /* smooth animation */
}


.image_contaienr img{
    height: 25px;
}

.caracteristica_title{
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.caracteristica_text{
    margin: 0;
    font-size: 16px;
    color: #898989;
    text-align: center;
}

.como{
    height: 150px;
    flex: 0 0 calc(50% - 20px);
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: border-left 0.2s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: row;
    row-gap: 20px;
    border-left: 5px solid #84b40039;
}

.como:hover{
   border-left: 5px solid #84b400; 
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.como:hover .number_container{
   transform: scale(1.06);
}

.como_content{
    padding: 10px;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    padding: 20px;
}

.number_container{
    width: 50px !important;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(to bottom right, #85B400, #84b40093);
    transition: transform 0.2s ease;
}

.number_container p{
    font-size: 20px;
    color: white;
    font-weight: bold;
    margin: 0;
}

.como_text{
    flex:  0 0 calc(100% - 70px);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.como_title{
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.como_text{
    margin: 0;
    font-size: 16px;
}

@media (max-width: 600px) {
    
    .caracteristica{
        box-sizing: border-box; /* 👈 key line */
        width: 100%;
        max-width: 350px;
    }

    .text_row{
        box-sizing: border-box; /* 👈 key line */
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        justify-content: center;
    }
}