body{
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.container {
    display: flex;
    box-shadow: 0 0 10px #ddd;
    width: 40%;
    height: 400px;
    border-radius: 5%;
}

.caja1 {
    text-align: center;
    background: linear-gradient(180deg, #6f7bff 0%, #4428ff 100%);
    border-radius: 5%;
    width: 50%;
    padding: 20px;
}

.t1 {
    color: #fff;
}

.globo {
    border-radius: 50%;
    width: 50%;
    height: 30%;
    background: linear-gradient(180deg, #010d9168 0%, #4528ff00 100%);
    color: #fff;
    font-size: 50px;
    line-height: 15px;
    margin: 0 auto;;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
} 

span {
    font-size: 12px;
    color: #b9b8b8bb;
    font-weight: 600;
}

h2 {
    color: #fff;
}

p {
    color: #ddd;
    font-size: 14px;
    margin: 0 10px;
}

.caja2 {
    width: 50%;
    padding: 20px;
}

.t2 {
    margin-left: 10px;
}


.secciones {
    margin: 10px ;
    padding: 10px;
    font-size: 14px;
    border-radius: 10%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.num {
    color: #000;
}

.red {
    color: #FF5F5F;
    background-color: #fff6f5;
}

.yellow {
    color: #FFB21E;
    background-color: #fefbf2;
}

.green {
    color: #3CCBA9;
    background-color: #f2fbfa;
}

.blue {
    color: #1125D6;
    background-color: #f1f4fc;
}

.btn {
    background: linear-gradient(180deg, #6f7bff 0%, #4428ff 100%);
    border: none;
    margin: 30px 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 15%;
    width: 90%;
    color: #fff;
}

@media (max-width:1000px) {
    .container {
        flex-direction: column;
        width: 30%;
        height: 700px;
    }

    .caja1 {
        width: 86%;
        height: 45%;
    }

    .t1 {
        font-size: 14px;
    }

    .h2 {
        font-size: 16px;
    }

    p {
        font-size: 12px;
    }

    .caja2 {
        height: 40%;
    }

    .t2 {
        font-size: 14px;
    }

    .secciones {
        width: 140%;
        font-size: 12px;
    }

    .btn {
        margin: 5px;
        width: 160%;
    }
}