
        .contenedorCuenta{
            display:flex;
            width:100%;
            justify-content:center;
            background-color:#1E2F6F;
            padding:56px 20px 70px 20px;
        }

        .contador{
            display:flex;
            flex-direction:column;
            width:100%;
            max-width:887px;
            color:white;
            align-items:center;
            justify-content:center;
        }

        .contador .badge{
            display:flex;
            background-color:#3D4C83;
            padding:14px 21px;
            margin-bottom:15px;
            font-size:16px;
            line-height:16px;
            font-weight:700;
            border-radius:100px;
        }

        .contador .evento{
            font-size:36px;
            line-height:40px;
            font-weight:700;
            text-align:center;
        }

        .contador .cuenta{
            display:flex;
            width:100%;
            margin-top:29px;
            gap:21px;
        }

        .contador .caja{
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;
            width:100%;
            background-color:#34447D;
            border-radius:10px;
            border:2px solid #5D6997;
            padding:26px 20px;
            gap:13px;
        }

        .contador .number{
            font-size:60px;
            line-height:60px;
            font-weight:800;
        }

        .contador .indicador{
            font-size:16px;
            line-height:16px;
            font-weight:600;
        }

        @media(max-width:768px){

            .contador .cuenta{
                flex-wrap:wrap;
            }

            .contador .caja{
                width:calc(50% - 11px);
            }

            .contador .evento{
                font-size:28px;
                line-height:32px;
            }

            .contador .number{
                font-size:42px;
                line-height:42px;
            }

        }